Autoformat
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
from .groups import ModuleGroup
|
||||
|
||||
|
||||
__all__ = [
|
||||
'ModuleGroup'
|
||||
]
|
||||
__all__ = ["ModuleGroup"]
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import click
|
||||
import typing as t
|
||||
|
||||
import click
|
||||
|
||||
|
||||
class ModuleGroup(click.Group):
|
||||
def __init__(
|
||||
@@ -13,6 +14,6 @@ class ModuleGroup(click.Group):
|
||||
) -> None:
|
||||
new_commands = dict()
|
||||
for command_key in commands.keys():
|
||||
new_commands[f'{name}-{command_key}'] = commands[command_key]
|
||||
|
||||
new_commands[f"{name}-{command_key}"] = commands[command_key]
|
||||
|
||||
super().__init__(name, new_commands, **attrs)
|
||||
|
||||
Reference in New Issue
Block a user