Skip to content

Commit

Permalink
fix: make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
micha91 committed Feb 6, 2024
1 parent be8d124 commit 9d6b14c
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions polarion_rest_api_client/data_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,9 @@ class WorkItem(BaseItem):
title: str | None = None
description_type: str | None = None
description: str | None = None
additional_attributes: dict[str, t.Any] = dataclasses.field(
default_factory=dict
)
linked_work_items: list[WorkItemLink] = dataclasses.field(
default_factory=list
)
attachments: list[WorkItemAttachment] = dataclasses.field(
default_factory=list
)
additional_attributes: dict[str, t.Any] = {}
linked_work_items: list[WorkItemLink] = []
attachments: list[WorkItemAttachment] = []
linked_work_items_truncated: bool = False
attachments_truncated: bool = False

Expand Down

0 comments on commit 9d6b14c

Please sign in to comment.