Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alonsosilvaallende committed Sep 27, 2024
1 parent 039eec8 commit c413ea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion solara/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
ToggleButtonsSingle,
)
from .input import InputText, InputFloat, InputInt # noqa: F401 F403
from .input_text_area import InputTextArea
from .input_text_area import InputTextArea # noqa: F401 F403
from .pivot_table import PivotTableView, PivotTable, PivotTableCard # noqa: F401 F403
from .head import Head # noqa: F401 F403
from .title import Title # noqa: F401 F403
Expand Down
2 changes: 1 addition & 1 deletion solara/components/input_text_area.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Callable, Optional, TypeVar, Union, cast, overload, List
from typing import Callable, Optional, Union, List
from .input import use_change
import solara
from solara.alias import rv as v
Expand Down

0 comments on commit c413ea3

Please sign in to comment.