Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Aug 4, 2023
1 parent c5c4d16 commit 58a512c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion python/cuxfilter/charts/core/aggregate/core_aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down
2 changes: 0 additions & 2 deletions python/cuxfilter/tests/charts/core/test_core_aggregate.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import pytest
from bokeh.events import ButtonClick
import panel as pn

from cuxfilter.charts.core.aggregate.core_aggregate import BaseAggregateChart
from cuxfilter.charts.bokeh.plots.bar import InteractiveBar
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]
Expand Down

0 comments on commit 58a512c

Please sign in to comment.