Skip to content

Commit 0240e86

Browse files
committed
Merge remote-tracking branch 'origin/mjcarroll/reapply_cve_patch' into mjcarroll/reapply_cve_patch
Signed-off-by: Michael Carroll <[email protected]>
2 parents 78267b9 + a8da3ac commit 0240e86

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ros2topic/ros2topic/eval/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ def generic_visit(self, node):
7575
if type(node).__name__ in self.model.nodes:
7676

7777
if isinstance(node, ast.Attribute):
78+
print(self.model.attributes)
79+
print(node)
7880
if node.attr not in self.model.attributes:
7981
raise ValidationException(
8082
'Attribute {aname} is not allowed'.format(

ros2topic/ros2topic/verb/hz.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def _setup_base_safe_eval():
117117

118118
def _get_nested_messages(msg_ordereddict):
119119
"""List all message field names recursively."""
120-
121120
all_attributes = []
122121
for (k, v) in msg_ordereddict.items():
123122
all_attributes.append(k)

0 commit comments

Comments
 (0)