Commit ·
5dfcd36
1
Parent(s): bfe3be9
Update match_parser.py
Browse files- match_parser.py +2 -0
match_parser.py
CHANGED
|
@@ -294,5 +294,7 @@ def load_match_df(file_path: Path) -> Tuple[pd.DataFrame, bool]:
|
|
| 294 |
df = _rename_columns(df, is_tournament)
|
| 295 |
df = _fix_dtypes(df, is_tournament)
|
| 296 |
|
|
|
|
|
|
|
| 297 |
return df, is_tournament
|
| 298 |
|
|
|
|
| 294 |
df = _rename_columns(df, is_tournament)
|
| 295 |
df = _fix_dtypes(df, is_tournament)
|
| 296 |
|
| 297 |
+
logging.info(f"Loaded match CSV {file_path}.")
|
| 298 |
+
|
| 299 |
return df, is_tournament
|
| 300 |
|