Skip to content

Commit e583393

Browse files
committed
Add None return type for __init__()
1 parent 0c9732a commit e583393

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_veml6070.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class VEML6070:
133133

134134
def __init__(
135135
self, i2c_bus: I2C, _veml6070_it: str = "VEML6070_1_T", ack: bool = False
136-
):
136+
) -> None:
137137
# Check if the IT is valid
138138
if _veml6070_it not in _VEML6070_INTEGRATION_TIME:
139139
raise ValueError(

0 commit comments

Comments
 (0)