Skip to content

Commit b5f0d70

Browse files
committed
ruff
1 parent 9736ee9 commit b5f0d70

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

nodestream_github/client/githubclient.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ async def fetch_enterprise_audit_log(
424424
dates = generate_date_range(lookback_period) or [None]
425425

426426
for target_date in dates:
427-
print(target_date)
428427
search_phrase = build_search_phrase(
429428
actions=actions,
430429
actors=actors,

tests/client/test_githubclient.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from nodestream_github.client.githubclient import (
77
GithubRestApiClient,
88
RateLimitedError,
9-
build_search_phrase,
109
generate_date_range,
1110
validate_lookback_period,
1211
)

tests/test_audit.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ async def test_get_audit_lookback_periods(
196196
json=GITHUB_AUDIT,
197197
)
198198

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
200201
import nodestream_github.client.githubclient as client_module
201202

202203
original_generate = client_module.generate_date_range

0 commit comments

Comments
 (0)