File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -424,7 +424,6 @@ async def fetch_enterprise_audit_log(
424
424
dates = generate_date_range (lookback_period ) or [None ]
425
425
426
426
for target_date in dates :
427
- print (target_date )
428
427
search_phrase = build_search_phrase (
429
428
actions = actions ,
430
429
actors = actors ,
Original file line number Diff line number Diff line change 6
6
from nodestream_github .client .githubclient import (
7
7
GithubRestApiClient ,
8
8
RateLimitedError ,
9
- build_search_phrase ,
10
9
generate_date_range ,
11
10
validate_lookback_period ,
12
11
)
Original file line number Diff line number Diff line change @@ -196,7 +196,8 @@ async def test_get_audit_lookback_periods(
196
196
json = GITHUB_AUDIT ,
197
197
)
198
198
199
- # replacing generate_date_range with test dates so that we don't iterate through all dates
199
+ # replacing generate_date_range with test dates
200
+ # so that we don't iterate through all dates
200
201
import nodestream_github .client .githubclient as client_module
201
202
202
203
original_generate = client_module .generate_date_range
You can’t perform that action at this time.
0 commit comments