diff --git a/webviz_config/_deployment/azure_cli.py b/webviz_config/_deployment/azure_cli.py index b596c749..df8c7c89 100644 --- a/webviz_config/_deployment/azure_cli.py +++ b/webviz_config/_deployment/azure_cli.py @@ -211,7 +211,7 @@ def create_storage_container( storage_account: str, container: str, ) -> None: - BlobServiceClient.from_connection_string( + BlobServiceClient.from_connection_string( # type: ignore[attr-defined] _connection_string(subscription, resource_group, storage_account) ).get_container_client(container).create_container() diff --git a/webviz_config/_localhost_token.py b/webviz_config/_localhost_token.py index a5f2b7bc..1b7f1f52 100644 --- a/webviz_config/_localhost_token.py +++ b/webviz_config/_localhost_token.py @@ -82,7 +82,7 @@ def _check_for_ott_or_cookie(): # type: ignore[no-untyped-def] else: flask.abort(401) - @self._app.after_request + @self._app.after_request # type: ignore[arg-type] def _set_cookie_token_in_response( response: flask.wrappers.Response, ) -> flask.wrappers.Response: