From 04ef958d58ce7436d4e901fcfa882cfcecaae6a8 Mon Sep 17 00:00:00 2001 From: Mergen Nachin Date: Mon, 16 Jun 2025 13:09:45 -0400 Subject: [PATCH] Fix lint --- install_requirements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_requirements.py b/install_requirements.py index 25abc614b0a..7d923672009 100644 --- a/install_requirements.py +++ b/install_requirements.py @@ -176,7 +176,7 @@ def main(args): help="Also installs required packages for running example scripts.", ) args = parser.parse_args(args) - use_pytorch_nightly=not bool(args.use_pt_pinned_commit) + use_pytorch_nightly = not bool(args.use_pt_pinned_commit) install_requirements(use_pytorch_nightly) if args.example: install_optional_example_requirements(use_pytorch_nightly)