Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 5, 2024
1 parent 7d0f780 commit c7d55ad
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions vizro-core/src/vizro/models/_action/_action.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from __future__ import annotations

import inspect

import logging
from collections.abc import Collection, Mapping
from pprint import pformat
from typing import Any, TypedDict, Union, TYPE_CHECKING
from typing import TYPE_CHECKING, Any, TypedDict, Union

from dash import Input, Output, State, callback, html
from dash.development.base_component import Component
Expand All @@ -21,11 +20,9 @@
from collections.abc import Iterable
from typing import cast


if TYPE_CHECKING:
from vizro.models import Page
from vizro.models import VizroBaseModel

from vizro.models._models_utils import _log_call
from vizro.models.types import CapturedCallable, ControlType

Expand Down Expand Up @@ -278,8 +275,8 @@ def outputs(self) -> dict[str, Output]:

@property
def inputs(self) -> ControlInputs:
from vizro.models import Filter, Parameter
from vizro.actions import filter_interaction
from vizro.models import Filter, Parameter

page = model_manager._get_model_page(self)

Expand Down

0 comments on commit c7d55ad

Please sign in to comment.