Skip to content

Commit bc7fa53

Browse files
Merge pull request #69 from tekktrik/main
Fix pylint errors
2 parents 328541d + ad55332 commit bc7fa53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,4 +396,4 @@ min-public-methods=1
396396

397397
# Exceptions that will emit a warning when being caught. Defaults to
398398
# "Exception"
399-
overgeneral-exceptions=Exception
399+
overgeneral-exceptions=builtins.Exception

adafruit_imageload/pnm/ppm_binary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
"""
1818
try:
19-
from typing import Tuple, Optional, List, Set
19+
from typing import Tuple, Optional, Set
2020
from io import BufferedReader
2121
from displayio import Palette, Bitmap
2222
from ..displayio_types import PaletteConstructor, BitmapConstructor

0 commit comments

Comments
 (0)