Skip to content

Commit e14e50b

Browse files
committed
Linting
1 parent 89c9252 commit e14e50b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_integration.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ def test_server_handles_unicode_on_windows(self, server_process):
102102
# If there's output available, try to read it
103103
if ready:
104104
try:
105-
output = server_process.stdout.read(
106-
1
107-
) # Read just one character
105+
server_process.stdout.read(1) # Read just one character
108106
# If we get here, Unicode handling is working
109107
assert True
110108
except UnicodeDecodeError:

0 commit comments

Comments
 (0)