Skip to content

Commit

Permalink
Ignore typing issue with DEVNULL (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccummingsNV authored Dec 6, 2024
1 parent 95c7eff commit b5f1514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/run_clang_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
try:
from subprocess import DEVNULL # py3k
except ImportError:
DEVNULL = open(os.devnull, "wb")
DEVNULL = open(os.devnull, "wb") # type: ignore (declared final)


DEFAULT_EXTENSIONS = "h,cpp,slang,slangh"
Expand Down

0 comments on commit b5f1514

Please sign in to comment.