Skip to content

Commit

Permalink
Fix unused e in bitsandbytes/__main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Jan 29, 2024
1 parent 01c8d2d commit 1fedb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitsandbytes/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def find_file_recursive(folder, filename):
out = glob.glob(os.path.join(folder, "**", filename + ext))
outs.extend(out)
except Exception as e:
raise RuntimeError('Error: Something when wrong when trying to find file. {e}')
raise RuntimeError('Error: Something when wrong when trying to find file.') from e

return outs

Expand Down

0 comments on commit 1fedb1f

Please sign in to comment.