diff options
author | crupest <crupest@outlook.com> | 2024-11-11 01:12:29 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2024-12-18 18:31:27 +0800 |
commit | 1d370f56d5a7b21fc440e90944f69627fd6cedb4 (patch) | |
tree | b09dd63c2a99c3b3ff9f30f46a5bf5ff6f054964 /tools/cru-py/cru/_func.py | |
parent | e710a36af2775118c514954252537ae37f11996c (diff) | |
download | crupest-1d370f56d5a7b21fc440e90944f69627fd6cedb4.tar.gz crupest-1d370f56d5a7b21fc440e90944f69627fd6cedb4.tar.bz2 crupest-1d370f56d5a7b21fc440e90944f69627fd6cedb4.zip |
HALF WORK: 2024.12.12
Diffstat (limited to 'tools/cru-py/cru/_func.py')
-rw-r--r-- | tools/cru-py/cru/_func.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/cru-py/cru/_func.py b/tools/cru-py/cru/_func.py index 1b437be..2b317ab 100644 --- a/tools/cru-py/cru/_func.py +++ b/tools/cru-py/cru/_func.py @@ -13,7 +13,7 @@ from typing import ( ) -from ._cru import CRU +from ._base import CRU from ._const import CruPlaceholder _P = ParamSpec("_P") @@ -163,11 +163,11 @@ class _Creators: class CruFunction: - RawBase = _RawBase - Base = _Base - Creators = _Creators - Wrapper = _Wrapper - Decorators = _Dec + RawBase: TypeAlias = _RawBase + Base: TypeAlias = _Base + Creators: TypeAlias = _Creators + Wrapper: TypeAlias = _Wrapper + Decorators: TypeAlias = _Dec CRU.add_objects(CruFunction) |