Skip to content

Commit 77d093e

Browse files
committed
Tried to fix pylint error.
1 parent d840749 commit 77d093e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_ms8607.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
try:
4242
"""Needed for type annotations"""
43-
from typing import Tuple, Byte, Any
43+
from typing import Tuple, Any, Byte
4444
from busio import I2C
4545

4646
except ImportError:
@@ -74,7 +74,7 @@ class CV:
7474
"""struct helper"""
7575

7676
@classmethod
77-
def add_values(cls, value_tuples: Tuple[Any, ...]) -> None:
77+
def add_values(cls, value_tuples: Tuple[Any]) -> None:
7878
"""Add CV values to the class"""
7979
cls.string = {}
8080
cls.lsb = {}

0 commit comments

Comments
 (0)