Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Jan 14, 2025
1 parent 91aa49b commit a5500bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions piccolo_admin/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ class GroupItem(BaseModel):


class GroupedTableNamesResponseModel(BaseModel):
grouped: t.Dict[str, t.List[str]] = Field(default_factory=list)
grouped: t.Dict[str, t.List[str]] = Field(default_factory=dict)
ungrouped: t.List[str] = Field(default_factory=list)


class GroupedFormsResponseModel(BaseModel):
grouped: t.Dict[str, t.List[FormConfigResponseModel]] = Field(
default_factory=list
default_factory=dict
)
ungrouped: t.List[FormConfigResponseModel] = Field(default_factory=list)

Expand Down

0 comments on commit a5500bf

Please sign in to comment.