annotate trafficintelligence/base.py @ 1138:50a7e1b47a3c Tertuis-Ou-draogo/movingpy-issue-22-from-etienne-beauchamp-1584900380975

Close branch Tertuis-Ou-draogo/movingpy-issue-22-from-etienne-beauchamp-1584900380975.
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Sun, 22 Mar 2020 19:10:57 +0000
parents cc5cb04b04b0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
665
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
1 '''Module for few base classes to avoid issues of circular import'''
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
2
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
3 class VideoFilenameAddable(object):
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
4 'Base class with the capability to attach a video filename'
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
5
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
6 def setVideoFilename(self, videoFilename):
15e244d2a1b5 corrected bug with circular import for VideoFilenameAddable, moved to base module
Nicolas Saunier <nicolas.saunier@polymtl.ca>
parents:
diff changeset
7 self.videoFilename = videoFilename