From e049fcee26e2814392ed5d0058fa1b6224fb65b1 Mon Sep 17 00:00:00 2001 From: ahmetveburak Date: Sat, 5 Oct 2024 20:43:32 +0300 Subject: [PATCH] fix(package): correct the click import --- aerich/migrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerich/migrate.py b/aerich/migrate.py index f4341cf..0d22a1d 100644 --- a/aerich/migrate.py +++ b/aerich/migrate.py @@ -5,7 +5,7 @@ from datetime import datetime from pathlib import Path from typing import Dict, Iterable, List, Optional, Set, Tuple, Type, Union, cast -import click +import asyncclick as click from dictdiffer import diff from tortoise import BaseDBAsyncClient, Model, Tortoise from tortoise.exceptions import OperationalError