summaryrefslogtreecommitdiffhomepage
path: root/host/inter/path.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/inter/path.py')
-rw-r--r--host/inter/path.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/host/inter/path.py b/host/inter/path.py
index 76db970a..eb5744eb 100644
--- a/host/inter/path.py
+++ b/host/inter/path.py
@@ -32,11 +32,11 @@ class Path (Drawable):
"""Computed path drawing."""
def __init__ (self, onto):
- Drawable.__init__ (self, onto)
- self.path = [ ]
+ Drawable.__init__ (self, onto)
+ self.path = [ ]
def draw (self):
- self.reset ()
- if len (self.path) > 2:
- fmt = dict (fill = 'green', arrow = LAST)
- self.draw_line (*self.path, **fmt)
+ self.reset ()
+ if len (self.path) > 2:
+ fmt = dict (fill = 'green', arrow = LAST)
+ self.draw_line (*self.path, **fmt)