mirror of
https://github.com/Bing-su/adetailer.git
synced 2026-02-05 16:00:05 +00:00
12 lines
205 B
Python
12 lines
205 B
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
class NansException(Exception): # noqa: N818
|
|
pass
|
|
|
|
else:
|
|
from modules.devices import NansException
|