Skip to content
Snippets Groups Projects
Commit 87adebf4 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[qa] Fixes

parent e34f6dfa
No related branches found
No related tags found
No related merge requests found
Pipeline #87044 passed
......@@ -71,7 +71,7 @@ master_doc = "index"
project = "clapper"
package = distribution(project)
copyright = "%s, Idiap Research Institute" % time.strftime("%Y") # noqa: A001
copyright = f"{time.strftime('%Y')}, Idiap Research Institute" # noqa: A001
# The short X.Y version.
version = package.version
......
......@@ -486,7 +486,7 @@ class AliasedGroup(click.Group):
if len(matches) == 1:
return click.Group.get_command(self, ctx, matches[0])
ctx.fail("Too many matches: %s" % ", ".join(sorted(matches))) # noqa: RET503
ctx.fail(f"Too many matches: {', '.join(sorted(matches))}") # noqa: RET503
def user_defaults_group(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment