diff --git a/Makefile b/Makefile index 9d08ec6..82c6e19 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ check-type: mypy dbtmetabase .PHONY: check-type -check: check-fmt check-lint-python check-type +check: check-fmt check-imports check-lint-python check-type .PHONY: check test: diff --git a/dbtmetabase/cli.py b/dbtmetabase/cli.py index dd7d0e1..ed0211f 100644 --- a/dbtmetabase/cli.py +++ b/dbtmetabase/cli.py @@ -2,10 +2,10 @@ import logging from pathlib import Path from typing import Callable, Iterable, Optional -from typing_extensions import cast import click import yaml +from typing_extensions import cast from .logger import logging as package_logger from .models.interface import DbtInterface, MetabaseInterface