fix: Reorder imports in repomap.py

This commit is contained in:
Paul Gauthier 2024-08-05 19:33:06 -03:00 committed by Paul Gauthier (aider)
parent eff71998a3
commit d0ffbf173b

View file

@ -15,13 +15,13 @@ from pygments.token import Token
from pygments.util import ClassNotFound
from tqdm import tqdm
from aider.dump import dump
from aider.utils import Spinner
# tree_sitter is throwing a FutureWarning
warnings.simplefilter("ignore", category=FutureWarning)
from tree_sitter_languages import get_language, get_parser # noqa: E402
from aider.dump import dump
from aider.utils import Spinner
Tag = namedtuple("Tag", "rel_fname fname line name kind".split())