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 a227372 commit c9da7d7Copy full SHA for c9da7d7
plugins/terminals/fps_terminals/server.py
@@ -70,6 +70,7 @@ async def send_data(self):
70
await websocket.send_json(["stdout", self.data_or_disconnect])
71
72
def quit(self, websocket):
73
- self.websockets.remove(websocket)
+ if websocket in self.weksockets:
74
+ self.websockets.remove(websocket)
75
if not self.websockets:
76
os.close(self.fd)
pyproject.toml
@@ -184,12 +184,3 @@ path = "jupyverse/__init__.py"
184
185
[tool.pytest.ini_options]
186
asyncio_mode = "strict"
187
-
188
-[tool.pixi.project]
189
-name = ""
190
-channels = ["conda-forge"]
191
-platforms = ["linux-64"]
192
193
-[tool.pixi.dependencies]
194
-pip = ">=24.0,<25"
195
-python = "<3.12"
0 commit comments