Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
energyLS committed Dec 1, 2023
1 parent c69c4ef commit c52f279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build_industrial_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def create_cement_db():
# Dropping the null capacities reduces the dataframe from 3000+ rows to 1672 rows
na_index = df_cement[df_cement.capacity.isna()].index
print(
"There are {} out of {} total cement plants with unknown capcities, setting value to country average".format(
"There are {} out of {} total cement plants with unknown capacities, setting value to country average".format(
len(na_index), len(df_cement)
)
)
Expand Down Expand Up @@ -434,7 +434,7 @@ def create_paper_df():
# Dropping the null capacities reduces the dataframe from 3000+ rows to 1672 rows
na_index = df_paper[df_paper.capacity.isna()].index
print(
"There are {} out of {} total paper plants with unknown capcities, setting value to country average".format(
"There are {} out of {} total paper plants with unknown capacities, setting value to country average".format(
len(na_index), len(df_paper)
)
)
Expand Down

0 comments on commit c52f279

Please sign in to comment.