Commit cb005459 authored by Christian Clauss's avatar Christian Clauss
Browse files

Placate flake8

parent 1e0690d9
......@@ -26,13 +26,14 @@ def tags_for(fname):
def main():
supported = {(tag.interpreter, tag.abi, tag.platform)
for tag in sys_tags()
supported = {
(tag.interpreter, tag.abi, tag.platform) for tag in sys_tags()
}
for fname in sys.argv[1:]:
tags = set(tags_for(fname))
if supported.intersection(tags):
print(fname)
if __name__ == '__main__':
main()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment