mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Lint: Fix f-string-missing-placeholders (F541)
This commit is contained in:
parent
9764a1b3f2
commit
5ad8092a2c
1 changed files with 2 additions and 2 deletions
|
@ -95,11 +95,11 @@ def main():
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--version",
|
"--version",
|
||||||
required=True,
|
required=True,
|
||||||
help=f"look for assets with this Dangerzone version",
|
help="look for assets with this Dangerzone version",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"dir",
|
"dir",
|
||||||
help=f"look for assets in this directory",
|
help="look for assets in this directory",
|
||||||
)
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
setup_logging()
|
setup_logging()
|
||||||
|
|
Loading…
Reference in a new issue