1 Commits

Author SHA1 Message Date
b4273ed894 Update dependency pylint to ==3.3.7,<3.4.0
Some checks failed
Tests / test (3.10) (pull_request) Failing after 1m13s
Tests / test (3.11) (pull_request) Failing after 27s
Tests / test (3.12) (pull_request) Failing after 32s
Tests / test (3.9) (pull_request) Failing after 27s
2025-05-04 20:55:39 +03:00

View File

@@ -81,10 +81,8 @@ class Message:
f"{data['validToDate']} {data['validToTime']}", "%Y-%m-%d %H:%M:%S"
)
)
self.date_start_alt: Union[str, None] = (
None if "altStart" not in data else data["altStart"]
)
self.date_end_alt: Union[str, None] = None if "altEnd" not in data else data["altEnd"]
self.date_start_alt: str = data["altStart"]
self.date_end_alt: str = data["altEnd"]
self.time_modified: Union[datetime, None] = (
None
if "modDate" not in data or "modTime" not in data