Skip to content
Snippets Groups Projects
Commit a6a9d4b5 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

minor bug fix, and test fix

parent 223b8d8b
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ class _Indexer:
raise KeyError(rowkey)
else:
# cannot set to empty series
if len(dat.iloc[rowkey]) == 0:
if len(dat_xloc[rowkey]) == 0:
continue
dat_xloc[rowkey] = val
......@@ -254,9 +254,9 @@ class _aLocIndexer(_Indexer):
return self
def __getitem__(self, key):
# currently lowdim from the next call is
# not used, so we always return a dios
rowkeys, colkeys, _ = self._unpack_key_aloc(key)
# currently lowdim is not used and we always
# return a dios
data = pd.Series(dtype='O', index=colkeys)
kws = dict(itype=self.obj.itype, cast_policy=self.obj._policy)
......
......@@ -36,7 +36,6 @@ def test__setitem_loc_singleCol(dios_aligned, idxer, exp):
VALS = [99,
pd.Series(range(4, 10), index=range(4, 10)),
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment