Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
fix typing for 3.8, (more like 3.WORST)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekaplan committed Nov 21, 2023
1 parent 2dc27df commit 06fd5c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefect_aws/workers/ecs_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def parse_identifier(identifier: str) -> ECSIdentifier:


def mask_sensitive_env_values(
task_run_request: dict, values: list[str], keep_length=3, replace_with="***"
task_run_request: dict, values: List[str], keep_length=3, replace_with="***"
):
for container in task_run_request.get("overrides", {}).get(
"containerOverrides", []
Expand Down

0 comments on commit 06fd5c7

Please sign in to comment.