Skip to content

Commit 1fedb1f

Browse files
committed
Fix unused e in bitsandbytes/__main__.py
1 parent 01c8d2d commit 1fedb1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitsandbytes/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def find_file_recursive(folder, filename):
1616
out = glob.glob(os.path.join(folder, "**", filename + ext))
1717
outs.extend(out)
1818
except Exception as e:
19-
raise RuntimeError('Error: Something when wrong when trying to find file. {e}')
19+
raise RuntimeError('Error: Something when wrong when trying to find file.') from e
2020

2121
return outs
2222

0 commit comments

Comments
 (0)