8000 REG: restore format_type attr by jbrockmendel · Pull Request #31017 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

REG: restore format_type attr #31017

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 22, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
REG: restore format_type attr
  • Loading branch information
jbrockmendel committed Jan 14, 2020
commit 74de074e37f522666d23405ee637338bc7d6b65a
2 changes: 2 additions & 0 deletions pandas/io/pytables.py
Original file line number Diff line number Diff line change
Expand Up @@ -2472,6 +2472,7 @@ class Fixed:
"""

pandas_kind: str
format_type: str = "fixed" # GH#30962 needed by dask
obj_type: Type[Union[DataFrame, Series]]
ndim: int
encoding: str
Expand Down Expand Up @@ -3127,6 +3128,7 @@ class Table(Fixed):
"""

pandas_kind = "wide_table"
format_type: str = "table" # GH#30962 needed by dask
table_type: str
levels = 1
is_table = True
Expand Down
0