Skip to content

Commit

Permalink
trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
jochs committed Jul 22, 2024
1 parent 4745fff commit 8982460
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 8982460

Please sign in to comment.