We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BaseItem
2 parents 4519d69 + d74bd6d commit 01e3043Copy full SHA for 01e3043
polarion_rest_api_client/data_models.py
@@ -19,10 +19,6 @@ class BaseItem:
19
status: str | None = None
20
_checksum: str | None = dataclasses.field(init=False, default=None)
21
22
- def __post_init__(self):
23
- """Set initial checksum value."""
24
- self._checksum = self.calculate_checksum()
25
-
26
def __eq__(self, other: object) -> bool:
27
"""Compare only BaseItem attributes."""
28
if not isinstance(other, BaseItem):
tests/test_client_documents.py
@@ -1,4 +1,4 @@
1
-# Copyright DB Netz AG and contributors
+# Copyright DB InfraGO AG and contributors
2
# SPDX-License-Identifier: Apache-2.0
3
4
from __future__ import annotations
0 commit comments