Skip to content

Commit

Permalink
fix: observed is not exported since traitlets 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Feb 14, 2023
1 parent 8572c62 commit d04dafd
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/vaex-jupyter/vaex/jupyter/widgets.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
from __future__ import absolute_import

import os

import ipyvuetify as v
import ipywidgets as widgets
import traitlets
from traitlets import * # noqa
from . import traitlets as vt
import os
from traitlets import Dict, observe

import vaex.jupyter

from . import traitlets as vt


def load_template(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
Expand Down Expand Up @@ -558,6 +562,7 @@ def _template(self):
import ipyvuetify as v
import traitlets


class SettingsEditor(v.VuetifyTemplate):
template_file = os.path.join(os.path.dirname(__file__), "vue/vjsf.vue")

Expand Down

0 comments on commit d04dafd

Please sign in to comment.