Skip to content

Commit 21f104e

Browse files
fix: use bare type: ignore for service_account call in GCSPipelineStore
Specific-code ignore[no-untyped-call] triggers unused-ignore under strict mode when the google stubs are absent. Bare type: ignore suppresses the error without risking unused-ignore. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e3e6ef4 commit 21f104e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

clinops/orchestrate/store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def _get_client(self) -> Any:
174174
) from exc
175175

176176
if self.credentials_path:
177-
creds = service_account.Credentials.from_service_account_file( # type: ignore[no-untyped-call]
177+
creds = service_account.Credentials.from_service_account_file( # type: ignore
178178
self.credentials_path
179179
)
180180
self._client = storage.Client(credentials=creds)

0 commit comments

Comments
 (0)