Skip to content

Commit 7b7128c

Browse files
committed
Ruff format after rebase.
1 parent 25371a5 commit 7b7128c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

beets/dbcore/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
Sequence,
3636
)
3737
from sqlite3 import Connection, sqlite_version_info
38-
from typing import TYPE_CHECKING, Any, AnyStr, Generic
38+
from typing import TYPE_CHECKING, Any, AnyStr, Generic, NamedTuple
3939

4040
from typing_extensions import TypeVar # default value support
4141
from unidecode import unidecode

test/test_dbcore.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ def plz_raise():
811811
with db.transaction() as tx:
812812
tx.query("select * from test where plz_raise()")
813813

814-
814+
815815
class TestIndex:
816816
@pytest.fixture(autouse=True)
817817
def db(self):
@@ -876,5 +876,3 @@ def test_index_equality(self, index1: Index, index2: Index, equality: bool):
876876
# Should be unique or not
877877
index_set = {index1, index2}
878878
assert len(index_set) == (1 if equality else 2)
879-
880-

0 commit comments

Comments
 (0)