Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #853 from cisco-open/fix/eigrp
Browse files Browse the repository at this point in the history
Fix/eigrp
  • Loading branch information
jpkrajewski authored Nov 8, 2024
2 parents fe4ffe3 + 9b8bcd2 commit e4f760d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class KeychainDetails(BaseModel):
class EigrpAuthentication(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True, extra="forbid")

auth_type: Union[Global[EigrpAuthType], Variable, Default[None]] = Default[None](value=None)
type: Union[Global[EigrpAuthType], Variable, Default[None]] = Default[None](value=None)
auth_key: Optional[Union[Global[str], Variable, Default[None]]] = Field(
serialization_alias="authKey", validation_alias="authKey", default=Default[None](value=None)
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "catalystwan"
version = "0.36.0dev3"
version = "0.36.0dev4"
description = "Cisco Catalyst WAN SDK for Python"
authors = ["kagorski <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit e4f760d

Please sign in to comment.