Skip to content

Commit

Permalink
trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
jochs committed Jul 23, 2024
1 parent 17ad3bf commit 8905822
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def generate(self) -> None:
AST.ClassReference(
import_=AST.ReferenceImport(module=AST.Module.built_in(("enum",))),
qualified_name_excluding_import=("StrEnum",),
),
],
)
]
else:
extends = [
AST.ClassReference(
import_=AST.ReferenceImport(module=AST.Module.built_in(("enum",))),
qualified_name_excluding_import=("StrEnum",),
),
],
)
]
enum_class = AST.ClassDeclaration(
name=self._get_class_name(),
extends=extends,
Expand Down

0 comments on commit 8905822

Please sign in to comment.