Skip to content

Commit b9622f6

Browse files
authored
Reference Error (#32)
* `server_response` not `data` * Updated code snippets * [BugFix]: Reference Error
1 parent aab3060 commit b9622f6

File tree

3 files changed

+784
-855
lines changed

3 files changed

+784
-855
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 = (2, 1, 0)
1+
VERSION = (2, 1, 1)
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
@@ -81,7 +81,7 @@ def __init__(self, et_resp: dict = None, dataframes: List[pd.DataFrame] = None):
8181
If both `et_resp` and `dataframes` are provided, the later is considered for the processing
8282
"""
8383
if et_resp:
84-
self.dataframes = ConvertTo(data=et_resp).output
84+
self.dataframes = ConvertTo(server_response=et_resp).output
8585

8686
if not et_resp:
8787
try:

0 commit comments

Comments
 (0)