From d07822c7a0f19058475d2505819765f2ac7c45a7 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Mon, 27 Feb 2017 12:07:41 +0100 Subject: [PATCH] Fix missing comma for dict creation --- src/py/crankshaft/crankshaft/clustering/moran.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/crankshaft/crankshaft/clustering/moran.py b/src/py/crankshaft/crankshaft/clustering/moran.py index a42a981..0e12e3f 100644 --- a/src/py/crankshaft/crankshaft/clustering/moran.py +++ b/src/py/crankshaft/crankshaft/clustering/moran.py @@ -88,7 +88,7 @@ class Moran: """ params = OrderedDict([("id_col", id_col), ("attr1", numerator), - ("attr2", denominator) + ("attr2", denominator), ("geom_col", geom_col), ("subquery", subquery), ("num_ngbrs", num_ngbrs)])