Skip to content

Commit 8f1ba23

Browse files
committed
add doc/conf.py to pylint checking, reformat files
1 parent 9e0520b commit 8f1ba23

69 files changed

Lines changed: 17 additions & 79 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ jobs:
8484
# warnings to the .pylintrc-wip file to prevent them from being
8585
# re-introduced
8686
- pylint --rcfile=.pylintrc-wip can/
87-
- pylint --rcfile=.pylintrc setup.py
87+
# check setup.py
88+
- pylint --rcfile=.pylintrc *.py
89+
# check doc/conf.py
90+
- pylint --rcfile=.pylintrc doc/**.py
8891
# mypy checking
8992
- mypy
9093
--python-version=3.7

can/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
``can`` is an object-orient Controller Area Network (CAN) interface module.
43
"""

can/broadcastmanager.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
Exposes several methods for transmitting cyclic messages.
43

can/bus.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
Contains the ABC bus implementation and its documentation.
43
"""

can/ctypesutil.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
This module contains common `ctypes` utils.
43
"""

can/interface.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
This module contains the base implementation of :class:`can.BusABC` as well
43
as a list of all available backends and some implemented

can/interfaces/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
Interfaces contain low level implementations that interact with CAN hardware.
43
"""

can/interfaces/canalystii.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
from ctypes import *
32
import logging
43
import platform

can/interfaces/ics_neovi/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
"""
43

can/interfaces/ics_neovi/neovi_bus.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
"""
32
ICS NeoVi interface module.
43

0 commit comments

Comments
 (0)