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 | 297beaf0fedd297dde6d665bd13c929b95b3d1c4 (patch) | |
tree | c2f88e50304ee0911fb9c159310c7eb331d48f9d /tools/cru-py/cru/config.py | |
parent | 0a0641ae7165092f8bb064526cf319754905657c (diff) | |
download | crupest-297beaf0fedd297dde6d665bd13c929b95b3d1c4.tar.gz crupest-297beaf0fedd297dde6d665bd13c929b95b3d1c4.tar.bz2 crupest-297beaf0fedd297dde6d665bd13c929b95b3d1c4.zip |
HALF WORK: 2024.12.13
Diffstat (limited to 'tools/cru-py/cru/config.py')
-rw-r--r-- | tools/cru-py/cru/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cru-py/cru/config.py b/tools/cru-py/cru/config.py index b0c83d5..843f30a 100644 --- a/tools/cru-py/cru/config.py +++ b/tools/cru-py/cru/config.py @@ -1,6 +1,6 @@ from typing import Any, TypeVar, Generic -from .excp import CruInternalLogicError +from .error import CruInternalLogicError from .value import ValueType, ValueGenerator, ValidationError T = TypeVar("T") |