From c5556bc436875cc11998f1e9ea0eb9b146a190d5 Mon Sep 17 00:00:00 2001 From: sanke Date: Fri, 13 Jul 2018 17:49:14 +0300 Subject: [PATCH] move import from lodash below colors --- src/models/analytic_unit.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/models/analytic_unit.ts b/src/models/analytic_unit.ts index ba5a4a5..7ae6a5d 100644 --- a/src/models/analytic_unit.ts +++ b/src/models/analytic_unit.ts @@ -3,9 +3,10 @@ import { SegmentArray } from './segment_array'; import { Segment, SegmentId } from './segment'; import { Metric } from './metric'; -import _ from 'lodash'; import { ANALYTIC_UNIT_COLORS } from '../colors'; +import _ from 'lodash'; + export type AnalyticSegmentPair = { anomalyType: AnalyticUnit, segment: AnalyticSegment }; export type AnalyticSegmentsSearcher = (point: number, rangeDist: number) => AnalyticSegmentPair[];