Skip to content

Commit c0a6b74

Browse files
committed
Bug fix Row Indices mixup
1 parent e00007c commit c0a6b74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ExtractTable/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 0, 1)
1+
VERSION = (1, 0, 2)
22
PRERELEASE = None # "alpha", "beta" or "rc"
33
REVISION = None
44

ExtractTable/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ConvertTo:
1414
FORMATS = {"df", "dataframe", "json", "csv", "dict"}
1515
DEFAULT = "df"
1616

17-
def __init__(self, data: dict, fmt: str = DEFAULT, index: bool=False):
17+
def __init__(self, data: dict, fmt: str = DEFAULT, index: bool = False):
1818
"""
1919
2020
:param data: Tabular JSON data from server

0 commit comments

Comments
 (0)