Skip to content

Commit

Permalink
fixing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pnxenopoulos committed Aug 4, 2024
1 parent 0bad0fc commit ee3da95
Show file tree
Hide file tree
Showing 3 changed files with 416 additions and 401 deletions.
2 changes: 1 addition & 1 deletion awpy/parsers/rounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def parse_rounds(parser: DemoParser, events: dict[str, pd.DataFrame]) -> pd.Data

# Find the bomb plant ticks
bomb_planted = events.get("bomb_planted")
if (not bomb_planted) or (bomb_planted.shape[0] == 0):
if (bomb_planted is None) or (bomb_planted.shape[0] == 0):
return rounds_df

rounds_df["bomb_plant"] = rounds_df.apply(
Expand Down
Loading

0 comments on commit ee3da95

Please sign in to comment.