1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 00:38:06 +00:00
thatmattlove-hyperglass/hyperglass/settings.py
2021-09-22 22:30:16 -07:00

19 lines
401 B
Python

"""Access hyperglass global system settings."""
# Standard Library
import typing as t
if t.TYPE_CHECKING:
# Local
from .models.system import HyperglassSettings
def _system_settings() -> "HyperglassSettings":
"""Get system settings from local environment."""
# Local
from .models.system import HyperglassSettings
return HyperglassSettings()
Settings = _system_settings()