Skip to content

Commit bbe48e1

Browse files
committed
chore(if-stmt): combine verbose elif and if using and
1 parent 784ffc7 commit bbe48e1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

toolshed/build_pathfinder_dlls.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@ def is_suppressed_dll(libname, dll):
5353
return True
5454
if dll.startswith("nvrtc-builtins"):
5555
return True
56-
elif libname == "nvvm":
57-
if dll == "nvvm32.dll":
58-
return True
56+
elif libname == "nvvm" and dll == "nvvm32.dll":
57+
return True
5958
return False
6059

6160

0 commit comments

Comments
 (0)