Skip to content

Commit

Permalink
Fixing formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch authored Jan 7, 2025
1 parent cd754cc commit 03dbe5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Autocoders/Python/bin/tlm_packet_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,9 @@ def gen_packet_file(self, xml_filename):
raise TlmPacketParseIOError("File %s does not exist!" % xml_filename)

fd = open(xml_filename, "r")
xml_parser = etree.XMLParser(remove_comments=True, load_dtd=True, resolve_entities=True, no_network=True)
xml_parser = etree.XMLParser(
remove_comments=True, load_dtd=True, resolve_entities=True, no_network=True
)
element_tree = etree.parse(fd, parser=xml_parser)
channel_size_dict = None

Expand Down

0 comments on commit 03dbe5a

Please sign in to comment.