mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
18 lines
344 B
Python
18 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()
|