Skip to content

Commit

Permalink
Remember to return
Browse files Browse the repository at this point in the history
  • Loading branch information
ayjayt committed Jan 6, 2025
1 parent c4e79dc commit afaf7ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion choreographer/_browsers/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, channel, **kwargs):
)
self._channel = channel
if not isinstance(channel, Pipe):
raise NotImplementedError("Websocket style channels not implemented yet")
raise NotImplementedError("Websocket style channels not implemented yet.")

self.tmp_dir = TmpDirectory(
path=self._tmp_dir_path,
Expand All @@ -72,6 +72,7 @@ def get_popen_args(self):
if isinstance(self.channel, Pipe):
args["stdin"] = self.channel.from_choreo_to_external
args["stdout"] = self.channel.from_external_to_choreo
return args

def get_cli(self):
if platform.system() != "Windows":
Expand Down

0 comments on commit afaf7ad

Please sign in to comment.