From 1d370f56d5a7b21fc440e90944f69627fd6cedb4 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 11 Nov 2024 01:12:29 +0800 Subject: HALF WORK: 2024.12.12 --- tools/cru-py/cru/_func.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tools/cru-py/cru/_func.py') 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) -- cgit v1.2.3