Skip to content

Commit 5224c00

Browse files
style: apply automated linter fixes
1 parent b06e4b0 commit 5224c00

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/safeds/data/image/containers/test_image.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,10 @@ class TestAddGaussianNoise:
412412
ids=["minimum noise", "some noise", "very noisy"],
413413
)
414414
def test_should_add_noise(
415-
self, resource_path: str, standard_deviation: float, snapshot_png: SnapshotAssertion,
415+
self,
416+
resource_path: str,
417+
standard_deviation: float,
418+
snapshot_png: SnapshotAssertion,
416419
) -> None:
417420
image = Image.from_png_file(resolve_resource_path(resource_path))
418421
assert image.add_gaussian_noise(standard_deviation) == snapshot_png
@@ -490,7 +493,9 @@ def test_should_return_clockwise_rotated_image(self, resource_path: str, snapsho
490493
ids=["rotate-counter-clockwise"],
491494
)
492495
def test_should_return_counter_clockwise_rotated_image(
493-
self, resource_path: str, snapshot_png: SnapshotAssertion,
496+
self,
497+
resource_path: str,
498+
snapshot_png: SnapshotAssertion,
494499
) -> None:
495500
image = Image.from_png_file(resolve_resource_path(resource_path))
496501
assert image.rotate_left() == snapshot_png

0 commit comments

Comments
 (0)