Closed nathanchance closed 1 year ago
A new ruff warning suggests switching to Path.glob() over glob.glob():
Path.glob()
glob.glob()
tc_build/llvm.py:258:12: PTH207 Replace `glob` with `Path.glob` or `Path.rglob`
While it is a little more verbose, it allows us to drop an import, so just do it to silence the warning.
A new ruff warning suggests switching to
Path.glob()
overglob.glob()
:While it is a little more verbose, it allows us to drop an import, so just do it to silence the warning.