Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
binste committed May 18, 2024
1 parent baf2535 commit 76dd578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_jupyter_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
if has_anywidget:
from altair.jupyter import jupyter_chart
else:
jupyter_chart = None
jupyter_chart = None # type: ignore


try:
Expand Down
2 changes: 1 addition & 1 deletion tests/vegalite/v5/test_renderers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import anywidget # noqa: F401

except ImportError:
anywidget = None
anywidget = None # type: ignore


@pytest.fixture
Expand Down

0 comments on commit 76dd578

Please sign in to comment.