Skip to content

Commit 1f160f3

Browse files
committed
Fix lint
1 parent fefb3a0 commit 1f160f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

zigpy_znp/types/basic.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

3-
import enum
43
import sys
4+
import enum
55
import typing
66

77
import zigpy.types as zigpy_t
@@ -67,8 +67,9 @@ def __init_subclass__(cls, signed=None, size=None, hex_repr=None) -> None:
6767
cls.__repr__ = super().__repr__
6868

6969
if sys.version_info < (3, 10):
70-
# XXX: The enum module uses the first class with __new__ in its __dict__ as the
71-
# member type. We have to ensure this is true for every subclass.
70+
# XXX: The enum module uses the first class with __new__ in its __dict__
71+
# as the member type. We have to ensure this is true for
72+
# every subclass.
7273
# Fixed with https://github.com/python/cpython/pull/26658
7374
if "__new__" not in cls.__dict__:
7475
cls.__new__ = cls.__new__

0 commit comments

Comments
 (0)