Skip to content

Commit

Permalink
issue #443: fixed unexpected indentation error in tables.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adityakuppa26 committed Aug 30, 2020
1 parent 6f91547 commit 306a9f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datascience/tables.py
Original file line number Diff line number Diff line change
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 306a9f0

Please sign in to comment.