Skip to content

Commit

Permalink
Merge pull request #24 from erikbosch/erik_fixes
Browse files Browse the repository at this point in the history
Fixing tooling error for events
  • Loading branch information
magnusfeuer committed Nov 8, 2021
2 parents 05cd901 + c2a19b9 commit 667891f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model/vsc_parser.py
Expand Up @@ -352,7 +352,7 @@ def ast_Events(parent, yamltree) -> list[Event]:
for st in subtrees:
node = Event(get_yaml_value(st, 'name'), parent)
node.description = get_yaml_value(st, 'description')
node.in_arguments = ast_Arguments(node, st, 'in_arguments')
node.in_arguments = ast_Arguments(node, st, 'in')
nodes.append(node)

return nodes
Expand Down
2 changes: 1 addition & 1 deletion templates/simple_overview.tpl
Expand Up @@ -46,7 +46,7 @@ Header
{% endfor %}
{% endfor %}
{% for x in n.properties %}
Event: {{ x.name }}
Property: {{ x.name }}
-> {{ x.description }}
-> Type: {{ x.type }}
-> Datatype: {{ x.datatype }}
Expand Down

0 comments on commit 667891f

Please sign in to comment.