Skip to content

Commit f7c73f5

Browse files
committed
remove print statements
1 parent 81aae95 commit f7c73f5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

airsenal/framework/prediction_utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,15 +314,13 @@ def get_def_con_points(
314314
must be changed together.
315315
"""
316316
if minutes >= 60 and player_id in df_def_con[0].index:
317-
print("Def cons points for", player_id, df_def_con[0].loc[player_id]) # DEBUG
318317
return df_def_con[0].loc[player_id]
319318
if (
320319
minutes >= 60
321320
or (minutes >= 30 and player_id not in df_def_con[1].index)
322321
or minutes < 30
323322
):
324323
return 0
325-
print("Def cons points for", player_id, df_def_con[1].loc[player_id]) # DEBUG
326324
return df_def_con[1].loc[player_id]
327325

328326

0 commit comments

Comments
 (0)