forked from mirrors/thatmattlove-hyperglass
17 lines
344 B
Python
17 lines
344 B
Python
# Standard Library
|
|
import typing as t
|
|
|
|
if t.TYPE_CHECKING:
|
|
# Local
|
|
from .models.system import HyperglassSystem
|
|
|
|
|
|
def _system_settings() -> "HyperglassSystem":
|
|
"""Get system settings from local environment."""
|
|
# Local
|
|
from .models.system import HyperglassSystem
|
|
|
|
return HyperglassSystem()
|
|
|
|
|
|
Settings = _system_settings()
|