Fix goof
This commit is contained in:
parent
ccb8728bbb
commit
f2b924e9e9
1 changed files with 1 additions and 2 deletions
|
@ -12,7 +12,6 @@ from pydantic_settings import (
|
||||||
)
|
)
|
||||||
from pydantic.v1.utils import deep_update
|
from pydantic.v1.utils import deep_update
|
||||||
|
|
||||||
from gisaf._version import __version__
|
|
||||||
from importlib.metadata import version
|
from importlib.metadata import version
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
@ -339,7 +338,7 @@ class Config(BaseSettings):
|
||||||
plot: Plot = Plot()
|
plot: Plot = Plot()
|
||||||
plugins: dict[str, dict[str, Any]] = {}
|
plugins: dict[str, dict[str, Any]] = {}
|
||||||
survey: Survey = Survey()
|
survey: Survey = Survey()
|
||||||
version: str = version('gisaf-backend')
|
version: str = version("gisaf-backend")
|
||||||
weather_station: dict[str, dict[str, Any]] = {}
|
weather_station: dict[str, dict[str, Any]] = {}
|
||||||
widgets: Widgets = Widgets()
|
widgets: Widgets = Widgets()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue