buildroot: convert unused format-string
Convert the `f""` into a `""`, since no format identifier is used. This makes pylint happier!
This commit is contained in:
parent
451ec33d9e
commit
dfec7aca9d
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ class BuildRoot(contextlib.AbstractContextManager):
|
|||
"--as-pid2",
|
||||
"--link-journal=no",
|
||||
f"--directory={self.root}",
|
||||
f"--setenv=PYTHONPATH=/run/osbuild/lib",
|
||||
"--setenv=PYTHONPATH=/run/osbuild/lib",
|
||||
*[f"--bind-ro={b}" for b in nspawn_ro_binds],
|
||||
*[f"--bind={b}" for b in (binds or [])],
|
||||
*[f"--bind-ro={b}" for b in (readonly_binds or [])],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue