Coverage for /usr/local/lib/python3.12/site-packages/prefect/settings/constants.py: 100%
6 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 11:21 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-12-05 11:21 +0000
1from pathlib import Path 1a
2from typing import Any, Tuple, Type 1a
4from pydantic import Secret, SecretStr 1a
6DEFAULT_PREFECT_HOME = Path.home() / ".prefect" 1a
7DEFAULT_PROFILES_PATH = Path(__file__).parent.joinpath("profiles.toml") 1a
8_SECRET_TYPES: Tuple[Type[Any], ...] = (Secret, SecretStr) 1a