7 lines
195 B
Python
7 lines
195 B
Python
"""仓库根目录常量:本文件必须位于含 dataset.py 的 code/ 根目录。"""
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
CODE_ROOT = Path(__file__).resolve().parent
|