Skip to content

Commit

Permalink
clean up print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
wrongkindofdoctor committed Dec 27, 2024
1 parent 5e32919 commit 2c58f47
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tools/catalog_builder/catalog_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def cat_builder(self, data_paths: list,
def call_build(self, file_parse_method=None):
if file_parse_method is None:
file_parse_method = self.file_parse_method
print(file_parse_method)
# see https://github.com/ncar-xdev/ecgtools/blob/main/ecgtools/parsers/cmip6.py
# for more parsing methods
self.cb = self.cb.build(parsing_func=file_parse_method)
Expand Down Expand Up @@ -196,7 +195,6 @@ def main(config: str):
conf = load_config(config)
for p in conf['data_root_dirs']:
try:
print(p)
os.path.isdir(p)
except FileNotFoundError:
print("{p} not found. Check data_root_dirs for typos.")
Expand Down

0 comments on commit 2c58f47

Please sign in to comment.