Skip to content

Commit 7d93e6a

Browse files
committed
remove debug statements
1 parent 51fdb0b commit 7d93e6a

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

composer/2022_airflow_summit/data_analytics_process_expansion.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,6 @@ def phx_dw_compute(input_list) -> float:
167167
weight = weights_list[input_list.index(row)]
168168
dwa_result += weight * annual_value
169169

170-
# print("weight list", weights_list)
171-
# print("factor list", factor_list)
172-
# print("return result", dwa_result)
173-
# print("factor sum", factor_sum)
174-
175170
return dwa_result
176171

177172
for year_val in range(1997, 2022):
@@ -185,7 +180,7 @@ def phx_dw_compute(input_list) -> float:
185180
.agg(sum("VALUE").alias("ANNUAL_PRCP"))
186181
.collect()
187182
)
188-
# print(prcp_year)
183+
189184
snow_year = (
190185
annual_df.where(
191186
(annual_df.ELEMENT == "SNOW") & (annual_df.YEAR == year_val)

0 commit comments

Comments
 (0)