We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ca2ae7 commit 84629f3Copy full SHA for 84629f3
1 file changed
src/py/kaleido/kaleido.py
@@ -65,6 +65,7 @@ class Kaleido(choreo.Browser):
65
66
async def close(self) -> None:
67
"""Close the browser."""
68
+ await super().close()
69
if self._tmp_dir:
70
self._tmp_dir.clean()
71
_logger.info("Cancelling tasks.")
@@ -75,7 +76,6 @@ async def close(self) -> None:
75
76
if not task.done():
77
task.cancel()
78
_logger.info("Exiting Kaleido/Choreo")
- return await super().close()
79
80
async def __aexit__(
81
self,
0 commit comments