From 6dc64546cefc600439095b142c18c9cbc70a450f Mon Sep 17 00:00:00 2001 From: Christian Poli Date: Fri, 1 Dec 2023 16:52:25 +0100 Subject: [PATCH] fixes --- .github/workflows/ui.yml | 4 ++-- ipyprogressivis/nbwidgets/vega.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ui.yml b/.github/workflows/ui.yml index cddfad1..0a2caaf 100644 --- a/.github/workflows/ui.yml +++ b/.github/workflows/ui.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["3.10", "3.11"] + python: ["3.11"] defaults: run: @@ -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/ \ No newline at end of file diff --git a/ipyprogressivis/nbwidgets/vega.py b/ipyprogressivis/nbwidgets/vega.py index c8b100c..efdfe93 100644 --- a/ipyprogressivis/nbwidgets/vega.py +++ b/ipyprogressivis/nbwidgets/vega.py @@ -1,7 +1,7 @@ import ipywidgets from traitlets import Unicode - +from typing import Any import vega.widget as vw @ipywidgets.register @@ -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)