Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
blazickjp committed Apr 22, 2024
1 parent 844f8ac commit 79458ae
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/memory/system_prompt_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
import subprocess
import sqlite3

from traitlets import Bool

logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -237,7 +235,7 @@ def delete_prompt(self, prompt_id: str) -> bool:
logger.error(f"Failed to delete prompt: {e}")
return False

def read_prompt(self, prompt_id: str) -> Bool():
def read_prompt(self, prompt_id: str) -> bool:
"""
Read a system prompt by its ID.
Expand Down

0 comments on commit 79458ae

Please sign in to comment.