Skip to content

Commit 7a6b5cc

Browse files
lib: fix lint error on ubuntu
1 parent 6d242f1 commit 7a6b5cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/find-python-script.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import sys;
1+
import sys
22

33
if (sys.stdout.encoding != "utf-8" and sys.platform == "win32"):
44
sys.stdout.reconfigure(encoding='utf-8')
55
print(sys.executable)
66
else:
7-
print(sys.executable)
7+
print(sys.executable)

0 commit comments

Comments
 (0)