Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
AsherGlick committed May 26, 2024
1 parent b270b17 commit d434c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xml_converter/generators/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Dict, List, Tuple, Set
import os
import markdown
from dataclasses import dataclass, field
from dataclasses import dataclass
from jinja2 import FileSystemLoader, Environment
from protobuf_types import get_proto_field_type
from util import capitalize, Document
Expand Down Expand Up @@ -263,7 +263,7 @@ def generate_auto_docs(self, metadata: Dict[str, MetadataType], content: Dict[st

examples = self.get_examples(
field_type=component_field.subcomponent_type.value,
field_key=fieldkey + "[" + component_field.name + "]", # TODO
field_key=fieldkey + "[" + component_field.name + "]",
examples=component_field.examples,
)

Expand Down

0 comments on commit d434c2d

Please sign in to comment.