Skip to content

Commit 667e72d

Browse files
committed
Removed extra warning, it's superfluous, since it's basically the default action.
1 parent 25c1535 commit 667e72d

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
@@ -505,7 +505,7 @@ def _Attribute(self, t):
505505
self.write(unparsed)
506506
return
507507
except KeyError:
508-
_LOG.warning('Could not find %s.%s attribute in standard tuples. Assuming normal object.', t.value.id, t.attr)
508+
pass #_LOG.warning('Could not find %s.%s attribute in standard tuples. Assuming normal object.', t.value.id, t.attr)
509509

510510
self.dispatch(t.value)
511511
self.write('.')

0 commit comments

Comments
 (0)