From 7a62b857937f88ad769c819b8736101eb9dd98c7 Mon Sep 17 00:00:00 2001 From: Elkin Aguas Date: Wed, 24 Jan 2024 21:21:17 +0000 Subject: [PATCH] Change call to clir modules to clir.command --- clir/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clir/cli.py b/clir/cli.py index df3dfc6..ae5c703 100644 --- a/clir/cli.py +++ b/clir/cli.py @@ -2,8 +2,8 @@ import os import subprocess from rich.prompt import Prompt -from clir.modules import Command -from clir.modules import CommandTable +from clir.command import Command +from clir.command import CommandTable @click.group() def cli():