Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymilne committed Dec 6, 2023
1 parent fbff5c7 commit a5ddf6d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vizro-core/src/vizro/models/_components/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import dash_bootstrap_components as dbc
from dash import html

from pydantic import Field
try:
from pydantic.v1 import Field
except ImportError: # pragma: no cov
from pydantic import Field

from vizro.models import Action, VizroBaseModel
from vizro.models._action._actions_chain import _action_validator_factory
Expand Down

0 comments on commit a5ddf6d

Please sign in to comment.