@@ -217,21 +217,21 @@ class ColDef:
217
217
),
218
218
ColName .GAME_DATE : ColSpec (
219
219
col_type = ColType .GROUP_BY ,
220
- expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H-%M- %S" ).dt .date (),
220
+ expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H:%M: %S" ).dt .date (),
221
221
),
222
222
ColName .GAME_DAY_OF_WEEK : ColSpec (
223
223
col_type = ColType .GROUP_BY ,
224
224
expr = pl .col (ColName .GAME_TIME )
225
- .str .to_datetime ("%Y-%m-%d %H-%M- %S" )
225
+ .str .to_datetime ("%Y-%m-%d %H:%M: %S" )
226
226
.dt .weekday (),
227
227
),
228
228
ColName .GAME_HOUR : ColSpec (
229
229
col_type = ColType .GROUP_BY ,
230
- expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H-%M- %S" ).dt .hour (),
230
+ expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H:%M: %S" ).dt .hour (),
231
231
),
232
232
ColName .GAME_WEEK : ColSpec (
233
233
col_type = ColType .GROUP_BY ,
234
- expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H-%M- %S" ).dt .week (),
234
+ expr = pl .col (ColName .GAME_TIME ).str .to_datetime ("%Y-%m-%d %H:%M: %S" ).dt .week (),
235
235
),
236
236
ColName .BUILD_INDEX : ColSpec (
237
237
col_type = ColType .GROUP_BY ,
0 commit comments