Skip to content

Commit

Permalink
removed debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
hrshdhgd committed Feb 17, 2024
1 parent d14f0f0 commit 3a13632
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/oaklib/utilities/writers/change_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,9 @@ def handle_node_deletion(self, value):
self.write_markdown_table("Nodes Deleted", header, rows)

def handle_new_text_definition(self, value):
import pdb

pdb.set_trace()
# Create rows for the table
rows = [
f"| {change.about_node} | {self.oi.label(change.about_node)} | {change.new_value} |"
f"| {change.about_node} | {self.oi.label(change.about_node)} | {change.old_value} |"
for change in value
]
header = "| ID | Label | New Text Definition |"
Expand Down

0 comments on commit 3a13632

Please sign in to comment.