Fix lint.

This commit is contained in:
Itamar Turner-Trauring 2023-03-24 11:44:59 -04:00
parent 958c08d6f5
commit 76ecdfb7bc

View File

@ -255,9 +255,9 @@ def do_admin(options):
return f(so)
subCommands = [
subCommands : SubCommands = [
("admin", None, AdminCommand, "admin subcommands: use 'tahoe admin' for a list"),
] # type: SubCommands
]
dispatch = {
"admin": do_admin,