Skip to content
Snippets Groups Projects
Commit aab87a10 authored by Soeren Peters's avatar Soeren Peters
Browse files

Refactor boolean expression.

parent 9910308c
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ import sys
def compile_command_selector(x):
return not ("3rdParty" in x["file"]) or not (".cu" in x["file"])
return not ("3rdParty" in x["file"] or ".cu" in x["file"])
if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment