Fix unused Python variables in test/[e-z]* (#136964)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/136964
Approved by: https://github.com/justinchuby, https://github.com/albanD
This commit is contained in:
Tom Ritchford
2024-12-18 18:14:52 +00:00
committed by PyTorch MergeBot
parent d298bd840f
commit d8c8ba2440
281 changed files with 508 additions and 565 deletions

View File

@ -335,7 +335,7 @@ class TestJit(JitCommonTestCase):
try:
inp = clone_input_helper(sample.input)
scripted(inp)
except Exception as e:
except Exception:
continue
self.fail(
"Inplace operation on integer tensor that should be promoted to float didn't fail!"