diff options
author | Schark <jordan@schark.online> | 2023-12-02 09:18:48 -0800 |
---|---|---|
committer | Schark <jordan@schark.online> | 2023-12-02 09:18:48 -0800 |
commit | 1f88bb51a3ab9f1ce1d0fa1058a851521a02d017 (patch) | |
tree | 056097fad105b7c931555bf4028c23f04d0d2583 /style.py | |
parent | f580735aaafdc8e0c9128955fcb93c039d10b8b9 (diff) | |
download | cli-gpt-1f88bb51a3ab9f1ce1d0fa1058a851521a02d017.tar.gz cli-gpt-1f88bb51a3ab9f1ce1d0fa1058a851521a02d017.zip |
Style hotfix
Diffstat (limited to 'style.py')
-rw-r--r-- | style.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,5 @@ import sys +import time from prompt_toolkit import prompt from prompt_toolkit.styles import Style @@ -6,9 +7,9 @@ from prompt_toolkit.styles import Style class StyleLog: def prompt(role: str): + return - - def show_ellipsis(): + def show_ellipsis(self, api_call_done): loop = True while loop: for i in range(0, 4): |