world_snapshot/__init__.py

11 lines
451 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
"""
仓库根目录兼容 shim。
pip 打包pyproject.toml include = ["world_snapshot*"])只安装 world_snapshot/ 包,
实现源码位于 world_snapshot/init.py。本文件仅在开发环境modules/ 在 sys.path 上)
把 import world_snapshot 转发到真正的子包,避免与同名子包产生二义性。
"""
from .world_snapshot import * # noqa: F401,F403
from .world_snapshot import __all__ # noqa: F401