Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 123dbed

Browse files
committed
ruff: Update source file for ruff formatting changes
Signed-off-by: BJ Hargrave <[email protected]>
1 parent ceafec2 commit 123dbed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_versions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ def test_schema_base(self) -> None:
3131
versions = schema_versions()
3232
assert_that(versions).is_not_none().is_not_empty()
3333
for i in range(len(versions)):
34-
version = base.joinpath(f"v{i+1}")
34+
version = base.joinpath(f"v{i + 1}")
3535
self._load_schemas(version)
3636

3737
def test_schema_versions(self) -> None:
3838
versions = schema_versions()
3939
assert_that(versions).is_not_none().is_not_empty()
4040
for i, version in enumerate(versions):
41-
assert_that(version).has_name(f"v{i+1}")
41+
assert_that(version).has_name(f"v{i + 1}")
4242
self._load_schemas(version)
4343

4444
def test_importlib_schema(self) -> None:
4545
versions = schema_versions()
4646
assert_that(versions).is_not_none().is_not_empty()
4747
for i in range(len(versions)):
48-
version = importlib.resources.files(f"instructlab.schema.v{i+1}")
48+
version = importlib.resources.files(f"instructlab.schema.v{i + 1}")
4949
self._load_schemas(version)

0 commit comments

Comments
 (0)