From 9487ba7913e0a2e6c1250a93f060d65fe7cd1844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 28 Apr 2013 10:08:00 +0200 Subject: [PATCH] Add missing future import --- doc/examples/plot_polygon.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/examples/plot_polygon.py b/doc/examples/plot_polygon.py index c605f12a..821c4558 100644 --- a/doc/examples/plot_polygon.py +++ b/doc/examples/plot_polygon.py @@ -7,8 +7,11 @@ This example shows how to approximate (Douglas-Peucker algorithm) and subdivide (B-Splines) polygonal chains. """ +from __future__ import print_function + import numpy as np import matplotlib.pyplot as plt + from skimage.draw import ellipse from skimage.measure import find_contours, approximate_polygon, \ subdivide_polygon