Skip to content

Commit 1f01090

Browse files
authored
Fix risk confs compiling (#745)
1 parent 4718ee6 commit 1f01090

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/python/test/sample/group_bys/risk/transaction_events.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def create_transaction_source(key_field):
2020
)
2121

2222

23-
window_sizes = ["1h", "1d", "30d", "365d"]
23+
window_sizes = ["1d", "30d", "365d"]
2424

2525

2626
def create_txn_group_by(source, key):
@@ -37,7 +37,7 @@ def create_txn_group_by(source, key):
3737
Aggregation(
3838
input_column="transaction_amount",
3939
operation=Operation.SUM,
40-
windows=["1h"],
40+
windows=["1d"],
4141
),
4242
],
4343
)

0 commit comments

Comments
 (0)