Skip to content

Commit

Permalink
flake8 comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fizzgig1888 committed Jul 28, 2024
1 parent f8e2e74 commit 1a2370a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,8 @@ def test_buildx_inspect_bootstrap():
with my_builder:
docker.buildx.inspect(my_builder.name, bootstrap=True)
assert my_builder.status == 'running'
assert my_builder.platforms #Must contain at least the host native platform
#Must contain at least the host native platform
assert my_builder.platforms


def test_builder_name():
Expand Down Expand Up @@ -487,7 +488,8 @@ def test_buildx_create_bootstrap():
my_builder = docker.buildx.create(bootstrap=True)
with my_builder:
assert my_builder.status == 'running'
assert my_builder.platforms #Must contain at least the host native platform
#Must contain at least the host native platform
assert my_builder.platforms


def test_buildx_create_remove_with_platforms():
Expand Down

0 comments on commit 1a2370a

Please sign in to comment.