Skip to content

Commit

Permalink
formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
hrshdhgd committed Feb 21, 2024
1 parent abb6f2e commit 8bd7598
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/oaklib/utilities/writers/change_handler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import logging
"""Change Handler Class."""


class ChangeHandler:
Expand Down Expand Up @@ -211,7 +211,8 @@ def handle_new_text_definition(self, value):

def handle_node_obsoletion_with_direct_replacement(self, value):
rows = [
f"| {change.about_node} | {self.oi.label(change.about_node)} | {change.has_direct_replacement} | {self.oi.label(change.has_direct_replacement)} |"
f"| {change.about_node} | {self.oi.label(change.about_node)} | {change.has_direct_replacement} |\
{self.oi.label(change.has_direct_replacement)} |"
for change in value
]
header = "| ID | Label | Replacement ID | Replacement Label |"
Expand Down

0 comments on commit 8bd7598

Please sign in to comment.