Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Jun 24, 2024
1 parent 527dd5b commit ddebd21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def gcs_storage_client(gcs_storage_container) -> Client:
after this test suite has finished running
"""
client: Client = Client(
credentials=AnonymousCredentials(),
credentials=AnonymousCredentials(), # type: ignore
project="test_gcp_uploader_project",
)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_config_sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def test_strip_sensitive_data_lookup_error(
"""
caplog.set_level(logging.WARNING)
strip_sensitive_data(
event={"bad_request": {}, "exception": {"invalid_values": [{}]}},
event={"bad_request": {}, "exception": {"invalid_values": [{}]}}, # type: ignore
hint=mock_sentry_hint,
)

Expand Down

0 comments on commit ddebd21

Please sign in to comment.