1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

refactor logzero → loguru; docstrings

This commit is contained in:
checktheroads
2019-12-29 23:57:39 -07:00
parent 1049bb3a4f
commit ea3a08b28a
24 changed files with 299 additions and 279 deletions

View File

@@ -1,10 +1,4 @@
"""
Defines models for all Params variables.
Imports config variables and overrides default class attributes.
Validates input for overridden parameters.
"""
"""Configuration validation entry point."""
# Project Imports
from hyperglass.configuration.models._utils import HyperglassModel
@@ -15,7 +9,7 @@ from hyperglass.configuration.models.messages import Messages
class Params(HyperglassModel):
"""Base model for params"""
"""Validation model for all configuration variables."""
general: General = General()
features: Features = Features()