Cosmetic
All checks were successful
/ build (push) Successful in 5s

This commit is contained in:
phil 2025-05-21 18:01:31 +02:00
parent 04279ce8c6
commit 7de3ac9e6a
3 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,3 @@
# GenieACS COmmander
Integration of GenieACS API with ...

View file

@ -1,16 +1,16 @@
from typing import Any, Type, Tuple
from typing import Type, Tuple
from pathlib import Path
from pydantic import BaseModel
from pydantic_settings import (
BaseSettings,
SecretsSettingsSource,
# SecretsSettingsSource,
SettingsConfigDict,
PydanticBaseSettingsSource,
YamlConfigSettingsSource,
)
config_files = [Path(Path.cwd().root) / "etc" / "acsc" / "congig.yaml"]
config_files = [Path(Path.cwd().root) / "etc" / "gacsco" / "congig.yaml"]
class Connection(BaseModel):

View file

@ -1,12 +1,9 @@
from dataclasses import dataclass
from json import dumps
from urllib.parse import quote
import httpx
from netaddr import EUI, AddrFormatError
from gacsco.config import conf
from gacsco.utils import GacscoError
class LoginError(Exception):