Skip to content

Commit e611e08

Browse files
authored
Merge branch 'develop' into cleanup-examples
2 parents 1d05ef7 + 81c5e15 commit e611e08

73 files changed

Lines changed: 37 additions & 157 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: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,23 @@ jobs:
8080
before_install:
8181
- travis_retry pip install -r requirements-lint.txt
8282
script:
83+
# -------------
84+
# pylint checking:
8385
# Slowly enable all pylint warnings by adding addressed classes of
8486
# warnings to the .pylintrc-wip file to prevent them from being
8587
# re-introduced
88+
# check the entire main codebase
8689
- pylint --rcfile=.pylintrc-wip can/**.py
87-
# check examples
90+
# check setup.py
91+
- pylint --rcfile=.pylintrc *.py
92+
# check doc/conf.py and possible other scripts in there
93+
- pylint --rcfile=.pylintrc doc/**.py
94+
# check the scripts folder
95+
- pylint --rcfile=.pylintrc scripts/**.py
96+
# check the examples
8897
- pylint --rcfile=.pylintrc-wip examples/**.py
89-
# mypy checking
98+
# -------------
99+
# mypy checking:
90100
- mypy
91101
--python-version=3.7
92102
--ignore-missing-imports

can/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
``can`` is an object-orient Controller Area Network (CAN) interface module.
53
"""

can/broadcastmanager.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
Exposes several methods for transmitting cyclic messages.
53

can/bus.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
Contains the ABC bus implementation and its documentation.
53
"""

can/ctypesutil.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
This module contains common `ctypes` utils.
53
"""

can/interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
This module contains the base implementation of :class:`can.BusABC` as well
53
as a list of all available backends and some implemented

can/interfaces/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
Interfaces contain low level implementations that interact with CAN hardware.
53
"""

can/interfaces/canalystii.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
from ctypes import *
42
import logging
53
import platform

can/interfaces/ics_neovi/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
"""
53

can/interfaces/ics_neovi/neovi_bus.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
ICS NeoVi interface module.
53

0 commit comments

Comments
 (0)