diff options
author | 2024-02-19 21:27:16 +0000 | |
---|---|---|
committer | 2024-03-04 12:35:02 +0000 | |
commit | 9c8fbd74b1d922f241c926cc26d609d0d13ae1c5 (patch) | |
tree | 0c2551275318d3ee0d64e4874121d54425ad4e4b /docs/netlify_build.py | |
parent | ruff lint fix: Add explicit namespaces for packages (diff) |
ruff lint fix: Run remaining auto-fixable rules
Diffstat (limited to 'docs/netlify_build.py')
-rw-r--r-- | docs/netlify_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/netlify_build.py b/docs/netlify_build.py index a6da74df..4c35e6ba 100644 --- a/docs/netlify_build.py +++ b/docs/netlify_build.py @@ -23,4 +23,4 @@ OUTPUT.write_text(build_script.text, encoding="utf-8") if __name__ == "__main__": # Run the build script print("Build started") # noqa: T201 - subprocess.run([sys.executable, OUTPUT.absolute()]) # noqa: S603 + subprocess.run([sys.executable, OUTPUT.absolute()], check=False) # noqa: S603 |