Skip to content

Commit

Permalink
Fix lenses default value in inspector config
Browse files Browse the repository at this point in the history
  • Loading branch information
druzsan committed Nov 27, 2024
1 parent 0e2cbc6 commit 920e031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renumics/spotlight/layout/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class InspectorConfig(WidgetConfig):
Inspector configuration model.
"""

lenses: Optional[List[Lens]] = Field(default_factory=None, alias="views")
lenses: Optional[List[Lens]] = Field(None, alias="views")
num_columns: NumInspectorColumns = Field(4, alias="visibleColumns")


Expand Down

0 comments on commit 920e031

Please sign in to comment.