File size: 205 Bytes
b5ba7a5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
class NansException(Exception): # noqa: N818
pass
else:
from modules.devices import NansException
|