Skip to content

Commit

Permalink
feat(glossary) fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkarchacryl committed Dec 6, 2024
1 parent d3a9208 commit 1f1c16e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def get_owners_multiple_types(owners: OwnersMultipleTypes) -> models.OwnershipCl
if isinstance(owners, Owners):
return models.OwnershipClass(owners=list(get_owners(owners)))

owners_meta: List[models.OwnerClass]
owners_meta: List[models.OwnerClass] = []
for owner in owners:
owners_meta.extend(get_owners(owner))

Expand Down

0 comments on commit 1f1c16e

Please sign in to comment.