mavlink_xml_to_markdown.py - remove unclosed b tag (#2153)

This commit is contained in:
Hamish Willee
2024-09-19 18:13:12 +10:00
committed by GitHub
parent 8f630b9460
commit ea1dbfa21c
+1 -1
View File
@@ -700,7 +700,7 @@ class MAVEnumEntry(object):
def getMarkdown(self, currentDialect):
"""Return markdown for an enum entry"""
deprString = f"<b>{self.deprecated.getMarkdown()}" if self.deprecated else ""
deprString = f"{self.deprecated.getMarkdown()}" if self.deprecated else ""
if self.wip:
print(f"TODO: WIP in Enum Entry: {self.name}")
importedNote = ""