We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13322c5 commit 7a44a8eCopy full SHA for 7a44a8e
test/image/make_baseline.py
@@ -56,7 +56,7 @@
56
57
HAD = [item in allNames for item in LAST]
58
59
-allNames = [a for a in allNames if all(b not in a for b in LAST)]
+allNames = [a for a in allNames if a not in LAST]
60
61
allNames += [item for item, had_item in zip(LAST, HAD) if had_item]
62
@@ -65,7 +65,7 @@
65
'mapbox_density0-legend',
66
'mapbox_osm-style'
67
]
68
-allNames = [a for a in allNames if all(b not in a for b in blacklist)]
+allNames = [a for a in allNames if a not in blacklist]
69
70
if len(allNames) == 0 :
71
print('error: Nothing to create!')
0 commit comments