diff --git a/tutordistro/commands/cli.py b/tutordistro/commands/cli.py index 2c994da..005a481 100644 --- a/tutordistro/commands/cli.py +++ b/tutordistro/commands/cli.py @@ -7,8 +7,8 @@ from tutordistro.commands.enable_private_packages import enable_private_packages from tutordistro.commands.enable_themes import enable_themes from tutordistro.commands.repository_validator import repository_validator -from tutordistro.commands.syntax_validator import syntax_validator from tutordistro.commands.run_extra_commands import run_extra_commands +from tutordistro.commands.syntax_validator import syntax_validator @click.group(help="Run distro commands") diff --git a/tutordistro/commands/run_extra_commands.py b/tutordistro/commands/run_extra_commands.py index 95c43b7..fdce3b4 100644 --- a/tutordistro/commands/run_extra_commands.py +++ b/tutordistro/commands/run_extra_commands.py @@ -8,9 +8,7 @@ from tutor import config as tutor_config from tutordistro.distro.extra_commands.application.commands_runner import CommandsRunner -from tutordistro.distro.extra_commands.infrastructure.tutor_commands import ( - TutorCommandManager, -) +from tutordistro.distro.extra_commands.infrastructure.tutor_commands import TutorCommandManager @click.command(name="run-extra-commands", help="Run tutor commands")