Skip to content

Commit

Permalink
Eliminate print
Browse files Browse the repository at this point in the history
  • Loading branch information
BradHN1 committed Oct 22, 2023
1 parent af4f0a4 commit ec555cb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/carbon_calculator/CCDefaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ def getDefault(self, locality, variable, date, default=None):
else:
for i in range(len(var["valid_dates"])):
valid_date = datetime.strptime(var["valid_dates"][i], '%Y-%m-%d').date()
print(locality,variable,valid_date,type(valid_date))
if valid_date < date:
value = var["values"][i]
return value
Expand Down

0 comments on commit ec555cb

Please sign in to comment.