Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arianvp committed Apr 19, 2024
1 parent 13d10b0 commit 246471d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload-ami/src/upload_ami/upload_ami.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
import hashlib
import logging
from typing import Literal, TypedDict
from typing import Iterable, Literal, TypedDict
import boto3
import boto3.ec2
import boto3.ec2.createtags
Expand Down Expand Up @@ -152,7 +152,7 @@ def copy_image_to_regions(
image_id: str,
image_name: str,
source_region: str,
target_regions: filter[RegionTypeDef],
target_regions: Iterable[RegionTypeDef],
public: bool,
) -> dict[str, str]:
"""
Expand Down

0 comments on commit 246471d

Please sign in to comment.