Skip to content

Commit cba95f4

Browse files
committed
fmt
Signed-off-by: Thomas Parnell <[email protected]>
1 parent 5d914f6 commit cba95f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

use_existing_torch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open(file) as f:
88
lines = f.readlines()
99
# filter out comments
10-
lines = [ line.split(" #")[0] for line in lines ]
10+
lines = [line.split(" #")[0] for line in lines]
1111
if "torch" in "".join(lines).lower():
1212
print("removed:")
1313
with open(file, 'w') as f:

0 commit comments

Comments
 (0)