Skip to content

Commit aacdc77

Browse files
committed
Fix lint error: PGH004 Use specific rule codes when using noqa
1 parent 60e5297 commit aacdc77

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

pyhilo/__init__.py

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
11
"""Define the hilo package."""
2-
from pyhilo.api import API # noqa
3-
from pyhilo.devices import Devices # noqa
2+
from pyhilo.api import API
3+
from pyhilo.devices import Devices
4+
from pyhilo.device import HiloDevice
5+
from pyhilo.event import Event
6+
from pyhilo.exceptions import HiloError, InvalidCredentialsError, WebsocketError
7+
from pyhilo.oauth2 import AuthCodeWithPKCEImplementation
8+
from pyhilo.util import from_utc_timestamp, time_diff
9+
from pyhilo.websocket import WebsocketEvent
10+
from pyhilo.const import UNMONITORED_DEVICES
11+
from pyhilo.device.switch import Switch
12+
13+
__all__ = [
14+
"API",
15+
"Devices",
16+
"HiloDevice",
17+
"Event",
18+
"HiloError",
19+
"InvalidCredentialsError",
20+
"WebsocketError",
21+
"AuthCodeWithPKCEImplementation",
22+
"from_utc_timestamp",
23+
"time_diff",
24+
"WebsocketEvent",
25+
"UNMONITORED_DEVICES",
26+
"Switch",
27+
]

0 commit comments

Comments
 (0)