Skip to content

Commit d97a5d9

Browse files
committed
Fixup:
Remove missing not needed f string formatter Signed-off-by: Toni Finger <[email protected]>
1 parent e3f0932 commit d97a5d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/kaas/sonobuoy_handler/sonobuoy_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def _build_command(self, process, args):
6565
return command_string
6666

6767
def _sonobuoy_run(self):
68-
logger.debug(f"sonobuoy run")
68+
logger.debug("sonobuoy run")
6969
check_args = ["--wait"]
7070
check_args += [str(arg) for arg in self.args]
7171
subprocess.run(
@@ -85,7 +85,7 @@ def _sonobouy_delete(self):
8585
)
8686

8787
def _sonobouy_status_result(self):
88-
logger.debug(f"sonobuoy status")
88+
logger.debug("sonobuoy status")
8989
process = subprocess.run(
9090
self._build_command("status", ["--json"]),
9191
shell=True,

0 commit comments

Comments
 (0)