We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6457ba2 commit d6fb548Copy full SHA for d6fb548
lambdas/icaseworks_api_ingestion/main.py
@@ -8,14 +8,17 @@
8
import time
9
from os import getenv
10
11
-import boto3
12
-import pybase64
13
-import requests
14
-from dotenv import load_dotenv
15
-
16
+# needs to be above imports for the additional dependencies
+# flake8 E402 would complain about this so is ignored
17
sys.path.append("./lib/")
18
+import boto3 # noqa: E402
+import pybase64 # noqa: E402
+import requests # noqa: E402
19
+from dotenv import load_dotenv # noqa: E402
20
+
21
22
logger = logging.getLogger()
23
logger.setLevel(logging.INFO)
24
0 commit comments