fix typing of main function
This commit is contained in:
parent
322ae8b8e2
commit
a42a349bb7
1 changed files with 1 additions and 1 deletions
|
|
@ -282,7 +282,7 @@ class Tui(App[None]):
|
|||
|
||||
@command_uses_new_session
|
||||
@click.option("--replace-system-prompt/--no-replace-system-prompt", default=False)
|
||||
def main(obj: Obj, replace_system_prompt) -> None:
|
||||
def main(obj: Obj, replace_system_prompt: bool) -> None:
|
||||
"""Start interactive terminal user interface session"""
|
||||
api = obj.api
|
||||
assert api is not None
|
||||
|
|
|
|||
Loading…
Reference in a new issue