Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Feb 8, 2018
1 parent a1736a0 commit 7e9f442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dask/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,5 +894,5 @@ def is_arraylike(x):
False
"""
return (hasattr(x, '__array__') and
hasattr(x, 'shape') and x.shape
and hasattr(x, 'dtype'))
hasattr(x, 'shape') and x.shape and
hasattr(x, 'dtype'))

0 comments on commit 7e9f442

Please sign in to comment.