We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c899f00 commit 57f8553Copy full SHA for 57f8553
.gitignore
@@ -0,0 +1 @@
1
+__pycache__
Makefile
@@ -0,0 +1,4 @@
+all:
2
+ ./test_bioscript.py
3
+ ./test_pycodestyle.py
4
+.PHONY: all
test_pycodestyle.py
@@ -21,6 +21,10 @@
21
# SOFTWARE.
22
23
import os
24
-import pycodestyle
+try:
25
+ import pycodestyle
26
+except ImportError:
27
+ print('Try `python3 -m pip install pycodestyle`')
28
+ raise
29
30
pycodestyle.StyleGuide(paths=['--max-line-length=99']).check_files([os.path.dirname(__file__)])
0 commit comments