We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fe97d0 commit 343a0d7Copy full SHA for 343a0d7
.travis.yml
@@ -81,9 +81,7 @@ jobs:
81
# re-introduced
82
# check the entire main codebase
83
- pylint --rcfile=.pylintrc-wip can/**.py
84
- # check setup.py
85
- - pylint --rcfile=.pylintrc *.py
86
- # check doc/conf.py
+ - pylint --rcfile=.pylintrc setup.py
87
- pylint --rcfile=.pylintrc doc.conf
88
# check the scripts folder
89
- find scripts -type f -name "*.py" | xargs pylint --rcfile=.pylintrc
setup.py
@@ -1,7 +1,10 @@
1
#!/usr/bin/env python
2
+"""
3
+Setup script for the `can` package.
4
+Learn more at https://github.com/hardbyte/python-can/
5
6
7
# pylint: disable=invalid-name
-# pylint: disable=missing-module-docstring
8
9
from __future__ import absolute_import
10
0 commit comments