Skip to content

Commit

Permalink
Remove unused static method
Browse files Browse the repository at this point in the history
  • Loading branch information
bpepple committed Sep 18, 2024
1 parent df4fe61 commit 72d23a2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions darkseid/metroninfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,6 @@ def _assign_basic_children(
if id_ := val.id_:
child_node.attrib["id"] = str(id_)

@staticmethod
def _assign_basic_resource(root: ET.Element, element: str, val: Basic) -> None:
resource_node = MetronInfo._get_or_create_element(root, element)
resource_node.text = val.name
if val.id_:
resource_node.attrib["id"] = str(val.id_)

@staticmethod
def _assign_arc(root: ET.Element, vals: list[Arc]) -> None:
parent_node = MetronInfo._get_or_create_element(root, "Arcs")
Expand Down

0 comments on commit 72d23a2

Please sign in to comment.