Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions polarion_rest_api_client/data_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ class BaseItem:
status: str | None = None
_checksum: str | None = dataclasses.field(init=False, default=None)

def __post_init__(self):
"""Set initial checksum value."""
self._checksum = self.calculate_checksum()

def __eq__(self, other: object) -> bool:
"""Compare only BaseItem attributes."""
if not isinstance(other, BaseItem):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_client_documents.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright DB Netz AG and contributors
# Copyright DB InfraGO AG and contributors
# SPDX-License-Identifier: Apache-2.0

from __future__ import annotations
Expand Down