Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xtianpoli committed Dec 1, 2023
1 parent 20e4e0a commit 6dc6454
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11"]
python: ["3.11"]

defaults:
run:
Expand Down Expand Up @@ -70,5 +70,5 @@ jobs:
if: failure()
uses: actions/upload-artifact@v3
with:
name: ipytables-updated-images
name: ipyprogressivis-updated-images
path: ui-tests/tests/end2end.test.ts-snapshots/
4 changes: 2 additions & 2 deletions ipyprogressivis/nbwidgets/vega.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ipywidgets
from traitlets import Unicode


from typing import Any
import vega.widget as vw

@ipywidgets.register
Expand All @@ -11,5 +11,5 @@ class VegaWidget(vw.VegaWidget):
_view_module_version = Unicode("^0.1.0").tag(sync=True)
_model_module_version = Unicode("^0.1.0").tag(sync=True)

def __init__(self, *args, **kw):
def __init__(self, *args: Any, **kw: Any) -> None:
super().__init__(*args, **kw)

0 comments on commit 6dc6454

Please sign in to comment.