Skip to content

Commit 363e0ce

Browse files
lint
1 parent ffba5af commit 363e0ce

File tree

1 file changed

+2
-2
lines changed
  • test_vector_handlers/src/awses_test_vectors/manifests/full_message

1 file changed

+2
-2
lines changed

test_vector_handlers/src/awses_test_vectors/manifests/full_message/decrypt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def match(self, name, decrypt_fn):
138138
# and any actual issues are easier to see.
139139
# If an exception is not raised as expected,
140140
# `pytest.raises` will fail.
141-
f = io.StringIO()
142-
with contextlib.redirect_stderr(f):
141+
tmp_file = io.StringIO()
142+
with contextlib.redirect_stderr(tmp_file):
143143
decrypt_fn()
144144
except BaseException:
145145
# Translate the exception just to attach context.

0 commit comments

Comments
 (0)