golden hour
/opt/cloudlinux/venv/lib/python3.11/site-packages/mako/testing
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
0 B
Del
OK
__pycache__
-
Del
OK
_config.py
3.48 KB
Del
OK
assertions.py
5.04 KB
Del
OK
config.py
323 B
Del
OK
exclusions.py
1.52 KB
Del
OK
fixtures.py
2.97 KB
Del
OK
helpers.py
1.49 KB
Del
OK
Edit: config.py
from dataclasses import dataclass from pathlib import Path from ._config import ReadsCfg from .helpers import make_path @dataclass class Config(ReadsCfg): module_base: Path template_base: Path section_header = "mako_testing" converters = {Path: make_path} config = Config.from_cfg_file("./setup.cfg")
Save