You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when i edit cell value, something like A1 from 1 to 0, the backend raise exception below:
Traceback (most recent call last):
File "/conda/envs/notebook/lib/python3.6/site-packages/pandas/core/indexes/base.py", line 2898, in get_loc
return self._engine.get_loc(casted_key)
File "pandas/_libs/index.pyx", line 70, in pandas._libs.index.IndexEngine.get_loc
File "pandas/_libs/index.pyx", line 101, in pandas._libs.index.IndexEngine.get_loc
File "pandas/_libs/hashtable_class_helper.pxi", line 1675, in pandas._libs.hashtable.PyObjectHashTable.get_item
File "pandas/_libs/hashtable_class_helper.pxi", line 1683, in pandas._libs.hashtable.PyObjectHashTable.get_item
KeyError: '-.:'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/docker/ebs/py36env_zip_unarchive/notebook/lib/python3.6/site-packages/dtale/views.py", line 99, in _handle_exceptions
return func(*args, **kwargs)
File "/docker/ebs/py36env_zip_unarchive/notebook/lib/python3.6/site-packages/dtale/views.py", line 2086, in edit_cell
dtype = find_dtype(data[column])
File "/conda/envs/notebook/lib/python3.6/site-packages/pandas/core/frame.py", line 2906, in __getitem__
indexer = self.columns.get_loc(key)
File "/conda/envs/notebook/lib/python3.6/site-packages/pandas/core/indexes/base.py", line 2900, in get_loc
raise KeyError(key) from err
KeyError: '-.:'
The text was updated successfully, but these errors were encountered:
@TC500 I'm sorry about that. I was hoping I wouldn't have to patch my API endpoints but it looks like I do. I've gone through the code and modified any endpoint which included a column name in the URI path and instead passed it as a URL parameter. That should solve this issue. Should have a release out later today:
when i edit cell value, something like A1 from 1 to 0, the backend raise exception below:
The text was updated successfully, but these errors were encountered: