Skip to content

Commit 24b2320

Browse files
netromdkBrandon Davis
authored and
Brandon Davis
committed
Remove version check and NOQA:E402
1 parent 0868160 commit 24b2320

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

slacker.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
#!/usr/bin/env python
2-
3-
# Make sure v3+ is used.
4-
import sys
5-
vinfo = sys.version_info
6-
if vinfo < (3, 0):
7-
print("Python v3+ is required! You are using v{}.{}.".format(vinfo.major, vinfo.minor))
8-
sys.exit(-1)
9-
10-
from slacker.main import start_slacker # noqa: E402
2+
from slacker.main import start_slacker
113

124
if __name__ == "__main__":
135
start_slacker()

0 commit comments

Comments
 (0)