Skip to content

Commit

Permalink
Merge branch 'dev' into boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
bachya authored Jan 18, 2024
2 parents 69abdc4 + 5aad471 commit 1541749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecowitt2mqtt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class Config(BaseModel):

# Optional HTTP parameters:
endpoint: str = DEFAULT_ENDPOINT
port: int = DEFAULT_PORT
port: Annotated[int, Field(strict=True, ge=1, le=65536)] = DEFAULT_PORT

# Optional logging parameters:
diagnostics: bool = False
Expand Down

0 comments on commit 1541749

Please sign in to comment.