Source code for core.utils.constants
"""holds the immutable values needed for critical bottlenecks"""
from pathlib import Path
[docs]
def home_path():
"""Returns the home directry for the repository"""
return Path(__file__).resolve().parents[2]