Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused imports #114

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions shinywidgets/_shinywidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@

import copy
import importlib
import inspect
import json
import os
import tempfile
from typing import Any, Awaitable, Callable, Optional, Sequence, Union, cast, overload
from typing import Any, Optional, Sequence, Union, cast, overload
from uuid import uuid4
from weakref import WeakSet

Expand All @@ -27,10 +26,8 @@
)
from ipywidgets.widgets.widget import Widget
from shiny import Session, reactive
from shiny._utils import run_coro_sync, wrap_async
from shiny.http_staticfiles import StaticFiles
from shiny.module import resolve_id
from shiny.render import RenderFunction, RenderFunctionAsync
from shiny.render.transformer import (
TransformerMetadata,
ValueFn,
Expand Down