Skip to content

Commit

Permalink
Fixed SyntaxError due to unmatched paranthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
CodTan committed Oct 7, 2020
1 parent 44757fd commit 0fc5dc9
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 @@ -1817,7 +1817,7 @@ def pivot_bin(self, pivot_columns, value_column, bins=None, **vargs) :
... 'column3':'a',
... 'column4':6,
... }
... ]}
... ])
>>> t
column1 | column2 | column3 | column4
Expand Down Expand Up @@ -1927,7 +1927,7 @@ def stack(self, key, labels=None):
... 'column3':'a',
... 'column4':6,
... }
... ]}
... ])
>>> t
column1 | column2 | column3 | column4
Expand Down

0 comments on commit 0fc5dc9

Please sign in to comment.