Skip to content

Commit b818de6

Browse files
committed
fix: lints
1 parent 9e19fbd commit b818de6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/python_on_whales/components/buildx/imagetools/test_imagetools_cli_wrapper.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from unittest.mock import patch
2-
31
import pytest
42

53
from python_on_whales import docker
@@ -96,6 +94,8 @@ def test_imagetools_create_with_annotations_command_construction():
9694
)
9795

9896
assert len(manifest.annotations) == 2
99-
assert manifest.annotations["org.opencontainers.image.source"] == "https://github.com/user/repo"
97+
assert (
98+
manifest.annotations["org.opencontainers.image.source"]
99+
== "https://github.com/user/repo"
100+
)
100101
assert manifest.annotations["org.opencontainers.image.description"] == "Test image"
101-

0 commit comments

Comments
 (0)