Skip to content

Commit 40a54e4

Browse files
committed
Removed extra warning, it's superfluous, since it's basically the default action.
1 parent e8df15a commit 40a54e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

transpyle/cpp/unparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def _Attribute(self, t):
503503
self.write(unparsed)
504504
return
505505
except KeyError:
506-
_LOG.warning('Could not find %s.%s attribute in standard tuples. Assuming normal object.', t.value.id, t.attr)
506+
pass #_LOG.warning('Could not find %s.%s attribute in standard tuples. Assuming normal object.', t.value.id, t.attr)
507507

508508
self.dispatch(t.value)
509509
self.write('.')

0 commit comments

Comments
 (0)