Skip to content

Commit

Permalink
style: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Aug 27, 2024
1 parent ac31e48 commit ad202b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gptme/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from collections.abc import Generator
from dataclasses import dataclass
from typing import Callable
from collections.abc import Callable
from xml.etree import ElementTree

from ..message import Message
Expand Down
6 changes: 5 additions & 1 deletion tests/test_tabcomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ def test_matches():
assert ".git/" in _matches("")
assert _matches(".githu") == [".github/"]
assert _matches(".github") == [".github/"]
assert set(_matches(".github/")) == {".github/workflows/", ".github/actions/", ".github/codecov.yml"}
assert set(_matches(".github/")) == {
".github/workflows/",
".github/actions/",
".github/codecov.yml",
}

# files
assert _matches("README") == ["README.md"]
Expand Down

0 comments on commit ad202b0

Please sign in to comment.