Skip to content

Commit

Permalink
Remove kw_only
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon committed Oct 23, 2024
1 parent b6ce3ac commit 4a9fe7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/ui/src/deephaven/ui/components/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
logger = logging.getLogger(__name__)


@dataclass(kw_only=True)
@dataclass()
class TableFormat:
"""
A formatting rule for a table.
Expand All @@ -44,7 +44,7 @@ class TableFormat:
mode: TableDatabar | None = None


@dataclass(kw_only=True)
@dataclass()
class TableDatabar:
"""
A databar configuration for a table.
Expand Down

0 comments on commit 4a9fe7a

Please sign in to comment.