Coverage for topdownengine/asset_paths.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.15.2, created at 2026-07-24 02:27 +0000

1# Copyright (c) 2026 Shaurya Sharma 

2# SPDX-License-Identifier: MIT 

3 

4from pathlib import Path 

5 

6PACKAGE_ROOT: Path = Path(__file__).resolve().parent 

7"The folder that represents the root directory of the package." 

8 

9ASSETS_DIR: Path = PACKAGE_ROOT / "assets" 

10"The folder that represents the assets directory of the package."