Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cloutierMat committed Oct 10, 2024
1 parent 1c959f6 commit 8aa20a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion moto/utilities/id_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ def get_id_from_tags(id_source_context: IdSourceContext) -> Union[str, None]:

return None

def find_id_from_sources(self, id_source_context: IdSourceContext) -> Union[str, None]:
def find_id_from_sources(
self, id_source_context: IdSourceContext
) -> Union[str, None]:
existing_ids = id_source_context.get("existing_ids") or []
for id_source in self._id_sources:
if found_id := id_source(id_source_context):
Expand Down

0 comments on commit 8aa20a2

Please sign in to comment.