diff python/processing.py @ 665:15e244d2a1b5

corrected bug with circular import for VideoFilenameAddable, moved to base module
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 20 May 2015 13:57:47 +0200
parents 583a2c4622f9
children 933670761a57
line wrap: on
line diff
--- a/python/processing.py	Wed May 20 12:04:22 2015 +0200
+++ b/python/processing.py	Wed May 20 13:57:47 2015 +0200
@@ -1,11 +1,10 @@
 #! /usr/bin/env python
 '''Algorithms to process trajectories and moving objects'''
 
-__metaclass__ = type
+import moving
 
 import numpy as np
 
-import moving
 
 def extractSpeeds(objects, zone):
     speeds = {}