Skip to content

Commit 78d840f

Browse files
committed
Turn off linter message
For technical reasons, pylint can't treat adafruit_itertools as a package when analyzing it, leading to the reported diagnostic ************* Module adafruit_itertools_extras E: 79, 0: Attempted relative import beyond top-level package (relative-beyond-top-level) Since creating an empty __init__.py would consume 512 valuable bytes of storage on a circuitpython device, instead just silence the message.
1 parent a249c47 commit 78d840f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_itertools/adafruit_itertools_extras.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
https://github.com/adafruit/circuitpython/releases
7575
"""
7676

77-
#pylint:disable=invalid-name,deprecated-lambda,keyword-arg-before-vararg
77+
#pylint:disable=invalid-name,deprecated-lambda,keyword-arg-before-vararg,relative-beyond-top-level
7878

7979
from . import adafruit_itertools as it
8080

0 commit comments

Comments
 (0)