Skip to content

Commit

Permalink
cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenfreund committed Apr 9, 2024
1 parent 4d15b7e commit 6e4d0cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/chatdbg/assistant/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

from ..util.trim import sandwich_tokens, trim_messages
from ..util.text import strip_ansi

from .listeners import Printer


Expand Down
9 changes: 3 additions & 6 deletions src/chatdbg/chatdbg_lldb.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
import os

import json
import os
from typing import List, Optional, Union

import lldb

from chatdbg.native_util import clangd_lsp_integration
from chatdbg.native_util.code import code
from chatdbg.native_util.dbg_dialog import DBGDialog
from chatdbg.native_util.stacks import (
_ArgumentEntry,
_FrameSummaryEntry,
_SkippedFramesEntry,
)
from chatdbg.native_util.code import code
from chatdbg.util.config import chatdbg_config

from chatdbg.native_util.dbg_dialog import DBGDialog


# The file produced by the panic handler if the Rust program is using the chatdbg crate.
RUST_PANIC_LOG_FILENAME = "panic_log.txt"
PROMPT = "(ChatDBG lldb) "
Expand Down

0 comments on commit 6e4d0cd

Please sign in to comment.