We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b4ce3 commit 0716a8fCopy full SHA for 0716a8f
1 file changed
streamz/dataframe/core.py
@@ -245,7 +245,7 @@ def __dir__(self):
245
o = set(dir(type(self)))
246
o.update(self.__dict__)
247
o.update(c for c in self.columns
248
- if (isinstance(c, pd.compat.string_types) and pd.compat.isidentifier(c)))
+ if (isinstance(c, str) and c.isidentifier()))
249
return list(o)
250
251
def assign(self, **kwargs):
0 commit comments