Skip to content

Commit

Permalink
Fix bound param handling
Browse files Browse the repository at this point in the history
  • Loading branch information
argenisleon committed Dec 13, 2019
1 parent 80cd199 commit 5275f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimus/dataframe/rows.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def between(columns, lower_bound=None, upper_bound=None, invert=False, equal=Fal
# TODO: should process string or dates
columns = parse_columns(self, columns, filter_by_column_dtypes=PYSPARK_NUMERIC_TYPES)
if bounds is None:
bounds = (lower_bound, upper_bound)
bounds = [(lower_bound, upper_bound)]

def _between(_col_name):

Expand Down

0 comments on commit 5275f69

Please sign in to comment.