From 72bb2cbac91634f53edefde62256cb7b2c3f53f7 Mon Sep 17 00:00:00 2001 From: Jochem Smit Date: Fri, 14 Jun 2024 10:15:25 +0200 Subject: [PATCH] lint: add param import --- pyhdx/web/constructor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyhdx/web/constructor.py b/pyhdx/web/constructor.py index 46fa0ea9..1cf1a0d0 100644 --- a/pyhdx/web/constructor.py +++ b/pyhdx/web/constructor.py @@ -1,8 +1,10 @@ import collections +import param from distributed import Client from pyhdx.support import gen_subclasses +from pyhdx.web.cache import Cache from pyhdx.web.controllers import * from pyhdx.web.main_controllers import MainController from pyhdx.web.opts import OptsBase @@ -10,7 +12,6 @@ from pyhdx.web.tools import supported_tools from pyhdx.web.transforms import * from pyhdx.web.views import View -from pyhdx.web.cache import Cache element_count = 0