Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolkova committed Mar 30, 2024
1 parent 46283af commit 766c8af
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def __init__(self):
self.group_key = ""
self.enums = []
self.notes = []
self.units = []
self.current_md = ""
self.current_semconv = None

Expand Down Expand Up @@ -300,17 +299,6 @@ def to_creation_time_attributes(
for attr in sampling_relevant_attrs:
output.write("* " + self.render_fqn_for_attribute(attr) + "\n")

@staticmethod
def to_markdown_unit_table(members, output: io.StringIO):
output.write("\n")
output.write(
"| Name | Kind of Quantity | Unit String |\n"
"| ------------| ---------------- | ----------- |"
)
for member in members.values():
output.write(f"\n| {member.id} | {member.brief} | `{member.value}` |")
output.write("\n")

def to_markdown_enum(self, output: io.StringIO):
"""Renders enum types after a Semantic Convention Table
:return:
Expand Down

0 comments on commit 766c8af

Please sign in to comment.