Skip to content

Commit

Permalink
rm print to not confuse what is used in the builder
Browse files Browse the repository at this point in the history
  • Loading branch information
aradhakrishnanGFDL committed Sep 23, 2024
1 parent 7ba9dd0 commit 4f032dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catalogbuilder/intakebuilder/configparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ def __init__(self, config):
configfile = yaml.safe_load(file)
try:
self.input_path = configfile['input_path']
print("input_path :",self.input_path)
#print("input_path :",self.input_path)
except:
raise KeyError("input_path does not exist in config")
try:
self.output_path = configfile['output_path']
print("output_path :",self.output_path)
#print("output_path :",self.output_path)
except:
raise KeyError("output_path does not exist in config")
try:
Expand Down

0 comments on commit 4f032dc

Please sign in to comment.