Skip to content

Commit f1e7a4c

Browse files
authored
Merge pull request #6 from FoamyGuy/pylintrc_update
ignore imports in pylintrc
2 parents 2bf9742 + 964f620 commit f1e7a4c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
repos:
66
- repo: https://github.com/python/black
7-
rev: 19.10b0
7+
rev: 20.8b1
88
hooks:
99
- id: black
1010
- repo: https://github.com/fsfe/reuse-tool
11-
rev: latest
11+
rev: v0.12.1
1212
hooks:
1313
- id: reuse
1414
- repo: https://github.com/pre-commit/pre-commit-hooks

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ ignore-comments=yes
250250
ignore-docstrings=yes
251251

252252
# Ignore imports when computing similarities.
253-
ignore-imports=no
253+
ignore-imports=yes
254254

255255
# Minimum lines number of a similarity.
256256
min-similarity-lines=4

adafruit_monsterm4sk.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@
5757
class MonsterM4sk:
5858
"""Represents a single Monster M4sk
5959
60-
The terms "left" and "right" are always used from the
61-
perspective of looking out of the mask.
62-
The right screen is the one USB port directly above it.
63-
"""
60+
The terms "left" and "right" are always used from the
61+
perspective of looking out of the mask.
62+
The right screen is the one USB port directly above it.
63+
"""
6464

6565
def __init__(self, i2c=None):
6666
"""
67-
:param i2c: The I2C bus to use, will try board.I2C()
68-
if not supplied
67+
:param i2c: The I2C bus to use, will try board.I2C()
68+
if not supplied
6969
7070
"""
7171
displayio.release_displays()

0 commit comments

Comments
 (0)