Skip to content

Commit 0716a8f

Browse files
authored
Remove pandas.compat dependencies, fix #373
1 parent f9b4ce3 commit 0716a8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

streamz/dataframe/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def __dir__(self):
245245
o = set(dir(type(self)))
246246
o.update(self.__dict__)
247247
o.update(c for c in self.columns
248-
if (isinstance(c, pd.compat.string_types) and pd.compat.isidentifier(c)))
248+
if (isinstance(c, str) and c.isidentifier()))
249249
return list(o)
250250

251251
def assign(self, **kwargs):

0 commit comments

Comments
 (0)