Admin

【备忘】Python 实用技巧

1、TYPE_CHECKING

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from xxx import xxx

用于在声明一个变量类型时防止引用冲突

待续...