From 58a512c97979f3fa4f514bf6e1db3107d9e77f48 Mon Sep 17 00:00:00 2001 From: Ajay Thorve Date: Thu, 3 Aug 2023 18:27:32 -0700 Subject: [PATCH] remove unused imports --- python/cuxfilter/charts/core/aggregate/core_aggregate.py | 1 - python/cuxfilter/tests/charts/core/test_core_aggregate.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/python/cuxfilter/charts/core/aggregate/core_aggregate.py b/python/cuxfilter/charts/core/aggregate/core_aggregate.py index 95fffeee..eb319599 100644 --- a/python/cuxfilter/charts/core/aggregate/core_aggregate.py +++ b/python/cuxfilter/charts/core/aggregate/core_aggregate.py @@ -2,7 +2,6 @@ from bokeh.models import DatetimeTickFormatter import holoviews as hv from ..core_chart import BaseChart -from ....assets.numba_kernels import calc_value_counts from ...constants import ( CUDF_DATETIME_TYPES, ) diff --git a/python/cuxfilter/tests/charts/core/test_core_aggregate.py b/python/cuxfilter/tests/charts/core/test_core_aggregate.py index c3036915..0641f6d8 100644 --- a/python/cuxfilter/tests/charts/core/test_core_aggregate.py +++ b/python/cuxfilter/tests/charts/core/test_core_aggregate.py @@ -1,5 +1,4 @@ import pytest -from bokeh.events import ButtonClick import panel as pn from cuxfilter.charts.core.aggregate.core_aggregate import BaseAggregateChart @@ -7,7 +6,6 @@ import cuxfilter from ..utils import initialize_df, df_types from unittest import mock -import numpy as np df_args = {"key": [0, 1, 2, 3, 4], "val": [float(i + 10) for i in range(5)]} dfs = [initialize_df(type, df_args) for type in df_types]