Skip to content

Commit

Permalink
Revert debug_browser back to debug, not stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
ayjayt committed Nov 7, 2024
1 parent 0689bfd commit 0493d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py/kaleido/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def check_error(res):
raise RuntimeError(str(res))

async with (
Browser(headless=True, debug=debug, debug_browser=sys.stderr) as browser,
Browser(headless=True, debug=debug, debug_browser=debug) as browser,
atimeout.timeout(timeout)):
async def print_all(r):
print(f"All subscription: {r}", file=sys.stderr)
Expand Down

0 comments on commit 0493d3d

Please sign in to comment.