Skip to content

Commit

Permalink
Fixed #6
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Oct 10, 2020
1 parent daaffc4 commit d022f42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delta/util.py
Expand Up @@ -80,7 +80,7 @@ def update(self, *args, **kwargs):
self._update_from(arg.metadata.__dict__)
elif isinstance(arg, str):
self._update_from(json.loads(arg))
else:
elif arg is not None:
self._update_from(arg)
self._update_from(kwargs)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@
'scipy>=0.14.0',
'matplotlib>=1.3.1',
'numpy>=1.8.1',
'pandas>=0.13.1,<1.0', # https://github.com/cophi-wue/pydelta/issues/6
'pandas>=0.13.1', # https://github.com/cophi-wue/pydelta/issues/6
# 'profig>=0.2.8',
'scikit-learn>=0.16.0',
'regex'
Expand Down

0 comments on commit d022f42

Please sign in to comment.