Autoformat

This commit is contained in:
hhh
2024-05-27 17:12:21 +03:00
parent 0afca0dd67
commit 918d5af851
25 changed files with 358 additions and 378 deletions

View File

@@ -1,6 +1,3 @@
from .groups import ModuleGroup
__all__ = [
'ModuleGroup'
]
__all__ = ["ModuleGroup"]

View File

@@ -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)