Ignore pylint warnings for construct that does not work with Python 2.

This commit is contained in:
Felix Fontein
2024-03-23 10:43:47 +01:00
parent 8ed1dddbba
commit 92c19c78dc
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -225,7 +225,7 @@ class PatternMatcher(object):
break
if skip:
continue
for sub in rec_walk(cur):
for sub in rec_walk(cur): # pylint: disable=use-yield-from
yield sub
return rec_walk(root)