Skip to content

Commit 20c15f6

Browse files
committed
Remove stray print and fix comments
1 parent 4ff054b commit 20c15f6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

climada/util/finance.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ def download_world_bank_indicator(
212212
f"{indicator}?format=json&page={page}"
213213
)
214214
json_data = json.loads(response.text)
215-
print(json_data)
216215

217216
# Check if we received an error message
218217
try:
@@ -233,7 +232,7 @@ def download_world_bank_indicator(
233232
# Create dataframe
234233
data = pd.concat([pd.DataFrame.from_records(rec) for rec in raw_data])
235234

236-
# Parse dates and rename value column
235+
# Parse dates
237236
if parse_dates:
238237
data["date"] = pd.DatetimeIndex(data["date"])
239238
else:

0 commit comments

Comments
 (0)