Skip to content

Commit 8a26a21

Browse files
committed
remove stray comment
1 parent 17e825d commit 8a26a21

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python_files/vscode_pytest/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,8 +923,7 @@ def send_message(
923923

924924
if __writer is None:
925925
try:
926-
# option B: put this there: , buffering=1024
927-
__writer = open(TEST_RUN_PIPE, "wb") # noqa: SIM115, PTH123 (-1 no ,0 auto,1, int [this is the value of the buffer size])
926+
__writer = open(TEST_RUN_PIPE, "wb") # noqa: SIM115, PTH123
928927
except Exception as error:
929928
error_msg = f"Error attempting to connect to extension named pipe {TEST_RUN_PIPE}[vscode-pytest]: {error}"
930929
print(error_msg, file=sys.stderr)

0 commit comments

Comments
 (0)