Skip to content

Commit

Permalink
Merge pull request #64 from wolfidan/master
Browse files Browse the repository at this point in the history
Small improvement in list of products/datasets
  • Loading branch information
wolfidan committed Jun 25, 2024
2 parents ecc23fc + c2e3f1a commit b318fc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/parse_pyrad_processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def funcpath_to_docpath(funcpath):

def dict_to_restructured_text(yaml_data):
rst_output = []
rst_output.append('List of pyrad datasets')
rst_output.append('==============================\n')
rst_output.append('List of pyrad datasets separated by dataset type')
rst_output.append('=================================================\n')

for key, value in yaml_data.items():
rst_output.append(f"{key}")
Expand Down
4 changes: 2 additions & 2 deletions ci/parse_pyrad_products.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def parameters_to_dict(params):

def dict_to_restructured_text(yaml_data):
rst_output = []
rst_output.append('List of pyrad products')
rst_output.append('==============================\n')
rst_output.append('List of pyrad products separated by dataset type')
rst_output.append('=================================================\n')

for datasettype, value in yaml_data.items():
rst_output.append(f"{datasettype}")
Expand Down

0 comments on commit b318fc6

Please sign in to comment.