From 154d1a674d786ca1e682a610a03a2811d3ba477e Mon Sep 17 00:00:00 2001 From: Mario de Frutos Date: Wed, 25 Jan 2017 10:45:30 +0100 Subject: [PATCH 1/2] Added CLA part in the contributing document --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ed694bd..05e969e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -55,3 +55,7 @@ sudo make install # Run the tests against the installed extension. make test ``` + +## Submitting contributions + +Before opening a pull request (or submitting a contribution) you will need to sign a Contributor License Agreement (CLA) before making a submission, [learn more here](https://carto.com/contributions). From d07822c7a0f19058475d2505819765f2ac7c45a7 Mon Sep 17 00:00:00 2001 From: Raul Ochoa Date: Mon, 27 Feb 2017 12:07:41 +0100 Subject: [PATCH 2/2] 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)])