visualization/utils: remove dead import (#38067)

This commit is contained in:
Benjamin Dauvergne 2019-11-30 03:57:21 +01:00
parent e8e1d573c5
commit 6402c7ea99
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,6 @@ import json
import hashlib
import datetime
import decimal
from collections import OrderedDict
import copy
from django.utils.safestring import mark_safe
@ -29,7 +28,7 @@ from django.core.cache import cache
from django.http import Http404
from django.conf import settings
from ..utils import get_warehouses, human_join
from ..utils import get_warehouses
from ..engine import Engine
from .ods import Workbook
@ -45,6 +44,7 @@ class Visualization(object):
self.drilldown_y = drilldown_y
self.filters = filters or {}
self.loop = loop
self.members = {}
@property
def drilldown(self):