Fix set_important_stream definition

This commit is contained in:
mijauexe
2025-06-26 15:43:36 +02:00
parent 5c7fd9d364
commit 98821e51d2
2 changed files with 2 additions and 2 deletions

View File

@@ -375,7 +375,7 @@ class UIBase:
"""
raise NotImplementedError()
async def set_important_stream(self, path: str):
async def set_important_stream(self, important_stream: bool = True):
"""
Tell the extension that next stream should be visible and rendered as markdown

View File

@@ -172,7 +172,7 @@ class VirtualUI(UIBase):
async def send_project_info(self, name: str, project_id: str, folder_name: str, created_at: str):
pass
async def set_important_stream(self):
async def set_important_stream(self, important_stream: bool = True):
pass
async def start_breakdown_stream(self):