Skip to content

Commit

Permalink
Update util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgfierro authored Feb 7, 2024
1 parent 0c1933a commit 7205f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recommenders/models/sasrec/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, **kwargs):
elif ncols == 2:
self.with_time = False
else:
raise ValueError(f'3 or 2 columns must be in dataset. Given {ncols} columns')
raise ValueError(f"3 or 2 columns must be in dataset. Given {ncols} columns")

def split(self, **kwargs):
self.filename = kwargs.get("filename", self.filename)
Expand Down

0 comments on commit 7205f2a

Please sign in to comment.