From 5362d0cd4afde943c4a67218d470375833e88c1b Mon Sep 17 00:00:00 2001 From: Mike Gouline <1960272+gouline@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:19:13 +1100 Subject: [PATCH] Imports --- Makefile | 2 +- dbtmetabase/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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