Skip to content

Commit

Permalink
Merge pull request #446 from adityakuppa26/master
Browse files Browse the repository at this point in the history
issue #443: fixed unexpected indentation error in tables.py
  • Loading branch information
adnanhemani committed Aug 31, 2020
2 parents 6f91547 + 306a9f0 commit 701990a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datascience/tables.py
Expand Up @@ -323,8 +323,8 @@ def columns(self):
... })
>>> t.columns
(array(['a', 'b', 'c', 'z'], dtype='<U1'),
array([9, 3, 3, 1]),
array([ 1, 2, 2, 10]))
array([9, 3, 3, 1]),
array([ 1, 2, 2, 10]))
"""
return tuple(self._columns.values())

Expand Down

0 comments on commit 701990a

Please sign in to comment.