Skip to content

Commit

Permalink
Fixup:
Browse files Browse the repository at this point in the history
Remove missing not needed f string formatter

Signed-off-by: Toni Finger <[email protected]>
  • Loading branch information
tonifinger committed Nov 19, 2024
1 parent e3f0932 commit d97a5d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/kaas/sonobuoy_handler/sonobuoy_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _build_command(self, process, args):
return command_string

def _sonobuoy_run(self):
logger.debug(f"sonobuoy run")
logger.debug("sonobuoy run")
check_args = ["--wait"]
check_args += [str(arg) for arg in self.args]
subprocess.run(
Expand All @@ -85,7 +85,7 @@ def _sonobouy_delete(self):
)

def _sonobouy_status_result(self):
logger.debug(f"sonobuoy status")
logger.debug("sonobuoy status")
process = subprocess.run(
self._build_command("status", ["--json"]),
shell=True,
Expand Down

0 comments on commit d97a5d9

Please sign in to comment.