Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Jul 20, 2023
1 parent fefb3a0 commit 1f160f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions zigpy_znp/types/basic.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

import enum
import sys
import enum
import typing

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

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

0 comments on commit 1f160f3

Please sign in to comment.