From f92ae54d4748c1f06093dcbccde81e0c8c2d5652 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 27 Sep 2019 14:31:20 +0200 Subject: [PATCH] engine: remove duplicated line (#36488) --- bijoe/engine.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/bijoe/engine.py b/bijoe/engine.py index 78863be..27fbcfd 100644 --- a/bijoe/engine.py +++ b/bijoe/engine.py @@ -292,9 +292,6 @@ class EngineCube(object): sql = sql.format(fact_table=self.cube.fact_table, table_expression=table_expression, where_conditions=where_conditions) - sql = sql.format(fact_table=self.cube.fact_table, - table_expression=table_expression, - where_conditions=where_conditions) return sql def query(self, filters, drilldown, measures, **kwargs):