Skip to content

Commit 1a80e33

Browse files
committed
lint
1 parent 26e63fd commit 1a80e33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_get_canonical_version_raises(version):
2323
def test_self_consistent_unordered(version):
2424
list_path = f"lists/{stdlib_list.get_canonical_version(version)}.txt"
2525
file = resources.files("stdlib_list") / list_path
26-
modules = frozenset(file.read_text(encoding='utf-8').splitlines())
26+
modules = frozenset(file.read_text(encoding="utf-8").splitlines())
2727

2828
for mod_name in modules:
2929
assert stdlib_list.in_stdlib(mod_name, version)
@@ -35,7 +35,7 @@ def test_self_consistent_unordered(version):
3535
def test_self_consistent_ordered(version):
3636
list_path = f"lists/{stdlib_list.get_canonical_version(version)}.txt"
3737
file = resources.files("stdlib_list") / list_path
38-
modules = list(file.read_text(encoding='utf-8').splitlines())
38+
modules = list(file.read_text(encoding="utf-8").splitlines())
3939

4040
for mod_name in modules:
4141
assert stdlib_list.in_stdlib(mod_name, version)

0 commit comments

Comments
 (0)