Skip to content

Commit

Permalink
fix: Use non-None values for logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Dec 16, 2024
1 parent 91afc12 commit 1651526
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions capella2polarion/connectors/polarion_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,8 +288,8 @@ def compare_and_update_work_item(
logger.info(
"Delete work item links %r for model %s %r",
id_list_str,
new.type,
new.title,
old.type,
old.title,
)
self.project_client.work_items.links.delete(
list(delete_links.values())
Expand All @@ -300,8 +300,8 @@ def compare_and_update_work_item(
logger.info(
"Create work item links %r for model %s %r",
id_list_str,
new.type,
new.title,
old.type,
old.title,
)
self.project_client.work_items.links.create(
list(create_links.values())
Expand Down

0 comments on commit 1651526

Please sign in to comment.