Skip to content

Commit

Permalink
Make black linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
msheiny authored Dec 24, 2024
1 parent f74a14e commit 93f41af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions network_importer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

class BatfishSettings(BaseSettings):
"""Settings definition for the Batfish section of the configuration."""

address: str = Field(default="localhost", env="BATFISH_ADDRESS")
network_name: str = Field(default="network-importer", env="BATFISH_NETWORK_NAME")
snapshot_name: str = Field(default="latest", env="BATFISH_SNAPSHOT_NAME")
Expand All @@ -51,6 +52,7 @@ class BatfishSettings(BaseSettings):

class NetworkSettings(BaseSettings):
"""Settings definition for the Network section of the configuration."""

login: Optional[str] = Field(default=None, env="NETWORK_DEVICE_LOGIN")
password: Optional[str] = Field(default=None, env="NETWORK_DEVICE_PWD")
enable: bool = Field(default=True, env="NETWORK_DEVICE_ENABLE")
Expand Down

0 comments on commit 93f41af

Please sign in to comment.