Skip to content

Commit 3034041

Browse files
author
Michal Ploski
committed
Unified types
1 parent 82673db commit 3034041

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/e2e/utils/infrastructure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _create_layer(self, stack: Stack):
6565
)
6666
return powertools_layer
6767

68-
def _find_handlers(self, directory: str) -> list:
68+
def _find_handlers(self, directory: str) -> List:
6969
for root, _, files in os.walk(directory):
7070
return [os.path.join(root, filename) for filename in files if filename.endswith(".py")]
7171

@@ -154,7 +154,7 @@ def _upload_assets(self, template: dict, asset_root_dir: str):
154154
buf.seek(0)
155155
self.s3_client.upload_fileobj(Fileobj=buf, Bucket=bucket, Key=s3_key)
156156

157-
def _find_files(self, directory: str) -> list:
157+
def _find_files(self, directory: str) -> List:
158158
file_paths = []
159159
for root, _, files in os.walk(directory):
160160
for filename in files:

0 commit comments

Comments
 (0)