Skip to content

Commit

Permalink
Use different quotation mark inside f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
glatterf42 committed Feb 27, 2024
1 parent dbc9e6c commit abcd614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion message_ix_models/model/water/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1274,7 +1274,7 @@ def report(sc: Scenario, reg: str, sdgs: bool = False):
map_node_dict = map_node.groupby("node_parent")["node"].apply(list).to_dict()

for index, row in map_agg_pd.iterrows():
log.info(f"Processing {row["names"]}")
log.info(f"Processing {row['names']}")
# Aggregates variables as per standard reporting
report_iam.aggregate(row["names"], components=row["list_cat"], append=True)

Expand Down

0 comments on commit abcd614

Please sign in to comment.