From 27a104a6ffb1fde8eab6e09851c677bdf7a54dd8 Mon Sep 17 00:00:00 2001 From: Konrad Dysput Date: Mon, 9 Sep 2024 18:35:20 +0200 Subject: [PATCH] Do not use Flush --- backtracepython/child.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backtracepython/child.py b/backtracepython/child.py index 8e81be7..9f096b4 100644 --- a/backtracepython/child.py +++ b/backtracepython/child.py @@ -20,7 +20,7 @@ class globs: def eprint(*args, **kwargs): - print(*args, flush=True, **kwargs) + print(*args, **kwargs) def post_json(full_url, obj):