We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1970412 commit cacd742Copy full SHA for cacd742
README.md
@@ -0,0 +1 @@
1
+# Evaluation Function Toolkit for Python
lf_toolkit/io/stdio_server.py
@@ -16,8 +16,8 @@ class StdioClient(StreamIO):
16
17
def __init__(self):
18
self.stream = StapledByteStream(
19
- anyio.wrap_file(sys.stdout.buffer),
20
- anyio.wrap_file(sys.stdin.buffer),
+ anyio.wrap_file(sys.stdout),
+ anyio.wrap_file(sys.stdin),
21
)
22
23
async def read(self, size: int) -> bytes:
0 commit comments