Skip to content

Commit

Permalink
style: fix style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mstechly committed Nov 5, 2024
1 parent e79dce9 commit 1979a2b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/qref/schema_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
BaseModel,
BeforeValidator,
ConfigDict,
Field,
StringConstraints,
model_validator,
)
Expand Down Expand Up @@ -231,7 +230,7 @@ class RoutineV1(BaseModel):
"""

name: _Name
children: Annotated[NamedList[RoutineV1], _name_sorter] = NamedList[RoutineV1]()
children: Annotated[NamedList[RoutineV1], _name_sorter] = NamedList["RoutineV1"]()
type: str | None = None
ports: Annotated[NamedList[PortV1], _name_sorter] = NamedList[PortV1]()
resources: Annotated[NamedList[ResourceV1], _name_sorter] = NamedList[ResourceV1]()
Expand Down

0 comments on commit 1979a2b

Please sign in to comment.