From 97550971cb05cdda483b7e610a2544eed63a2476 Mon Sep 17 00:00:00 2001 From: iwatkot Date: Mon, 11 Nov 2024 18:43:47 +0100 Subject: [PATCH] mypy update. --- py3xui/inbound/inbound.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py3xui/inbound/inbound.py b/py3xui/inbound/inbound.py index 78ba71c..c63b591 100644 --- a/py3xui/inbound/inbound.py +++ b/py3xui/inbound/inbound.py @@ -72,9 +72,9 @@ class Inbound(BaseModel): total: int = 0 expiry_time: int = Field(default=0, alias=InboundFields.EXPIRY_TIME) # type: ignore - client_stats: list[Client] | None = Field( + client_stats: list[Client] | None = Field( # type: ignore default=[], alias=InboundFields.CLIENT_STATS - ) # type: ignore + ) tag: str = ""