Skip to content

Commit

Permalink
Remove redundant quotes
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
lubosmj committed Dec 4, 2023
1 parent d18bfce commit 98b80ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulp_container/tests/functional/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(self, tls_verify):
self.pull = lambda *args: self._dispatch_command("pull", *args, tls_verify)
self.push = lambda *args: self._dispatch_command("push", *args, tls_verify)
self.manifest_push = lambda *args: self._dispatch_command(
"manifest", "push", "*args, tls_verify"
"manifest", "push", *args, tls_verify
)
self.login = lambda *args: self._dispatch_command("login", *args, tls_verify)

Expand Down

0 comments on commit 98b80ad

Please sign in to comment.