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 15, 2024
1 parent 4a091d2 commit fd2aeff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vizro-core/src/vizro/models/_components/form/date_picker.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Literal, Optional, Union

import dash_mantine_components as dmc
from dash import Input, Output, State, dcc, html
from dash import html

try:
from pydantic.v1 import Field, PrivateAttr, validator
Expand Down Expand Up @@ -58,7 +58,6 @@ def build(self):
init_value = self.value or ([self.min, self.max] if self.range else self.min) # type: ignore[list-item]
date_range_picker_kwargs = {"allowSingleDateInRange": True} if self.range else {}


date_picker = dmc.DatePickerInput(
id=self.id,
minDate=self.min,
Expand Down

0 comments on commit fd2aeff

Please sign in to comment.