format with black

This commit is contained in:
jgcodes2020 2024-12-23 20:58:45 -05:00
parent 3efb2f9f4e
commit bc10ccee0c
2 changed files with 10 additions and 11 deletions

View file

@ -27,7 +27,9 @@ from .values import ArrayValue, ObjectValue, Value, VariantValue
class Property(AstNode):
grammar = Statement(
UseIdent("name"), ":", AnyOf(Binding, VariantValue, ObjectValue, Value, ArrayValue)
UseIdent("name"),
":",
AnyOf(Binding, VariantValue, ObjectValue, Value, ArrayValue),
)
@property