fix: Remove unused imports and move ChatChunks import to top of file

This commit is contained in:
Paul Gauthier (aider) 2024-08-22 12:39:12 -07:00
parent 69131a423e
commit f7d64e4c90

View file

@ -14,14 +14,14 @@ import threading
import time
import traceback
from collections import defaultdict
from dataclasses import dataclass, field
from datetime import datetime
from json.decoder import JSONDecodeError
from pathlib import Path
from typing import List
import git
from rich.console import Console, Text
from .chat_chunks import ChatChunks
from rich.markdown import Markdown
from aider import __version__, models, prompts, urls, utils