Skip to content

Commit

Permalink
cleanup: remove outdated comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nodiscc committed May 20, 2023
1 parent 848b8cb commit f3e2c29
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions hecat/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ def to_kebab_case(string):
newstring = string.translate(str.maketrans(replacements)).lower()
return newstring

# DEBT factorize yaml loading from single/multiple files
def load_yaml_data(path, sort_key=False):
"""load data from YAML source files
if the path is a file, data will be loaded directly from it
Expand Down Expand Up @@ -53,7 +52,6 @@ def load_yaml_data(path, sort_key=False):
logging.error('%s is not a file or directory', path)
exit(1)

# DEBT factorize yaml loading from single/multiple files
def load_config(config_file):
"""load steps/settings from a configuration file"""
yaml = ruamel.yaml.YAML(typ='rt')
Expand Down

0 comments on commit f3e2c29

Please sign in to comment.