mirror of
https://github.com/Pythagora-io/gpt-pilot.git
synced 2026-01-09 21:27:53 -05:00
Fix set_important_stream definition
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user