This commit is contained in:
ivankirpichnikov
2025-11-21 10:49:09 +03:00
parent cd721b4cf3
commit b3ebbe283b
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -81,7 +81,6 @@ enable_error_code = [
[[tool.mypy.overrides]] [[tool.mypy.overrides]]
module = ["aioboto3.*", "aiobotocore.*"] module = ["aioboto3.*", "aiobotocore.*"]
follow_untyped_imports = true follow_untyped_imports = true
ignore_missing_imports = true
[tool.ruff] [tool.ruff]
fix = true fix = true
@@ -26,7 +26,7 @@ class ConnectionProvider(Provider):
@provide(scope=Scope.APP) @provide(scope=Scope.APP)
async def s3_client(self, config: S3Config) -> AsyncIterable[AioBoto3ClientLike]: async def s3_client(self, config: S3Config) -> AsyncIterable[AioBoto3ClientLike]:
session = Session() session = Session() # type: ignore[no-untyped-call]
async with session.client( async with session.client(
"s3", "s3",