From f1cccf84530ccd7625b6c7b8c197c32c322f257e Mon Sep 17 00:00:00 2001 From: Piyush Jain Date: Thu, 28 Mar 2024 14:56:35 -0700 Subject: [PATCH] Fixed lint error. --- libs/aws/pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/aws/pyproject.toml b/libs/aws/pyproject.toml index 40d34f6d..3d60dab8 100644 --- a/libs/aws/pyproject.toml +++ b/libs/aws/pyproject.toml @@ -59,6 +59,10 @@ select = [ [tool.mypy] disallow_untyped_defs = "True" +[[tool.mypy.overrides]] +module = "boto3" +ignore_missing_imports = true + [tool.coverage.run] omit = ["tests/*"]