changeset 46:cfb00e8cc0ea

(22:36:03) drewp: plaese use stronger quotes """ on Cue:1 to help my highlighter
author dmcc
date Sun, 07 Jul 2002 13:37:04 +0000
parents 62c47c3a90cb
children 2ae11dc56b38
files light8/Cue.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/light8/Cue.py	Sun Jul 07 13:33:19 2002 +0000
+++ b/light8/Cue.py	Sun Jul 07 13:37:04 2002 +0000
@@ -1,12 +1,12 @@
-'''And that's my cue to exit(0)...'''
+"""And that's my cue to exit(0)..."""
 from time import time
 from util import subsetdict
 
 class Cue:
-    '''Cues are groups of fades.  They can tell you the current levels at a 
+    """Cues are groups of fades.  They can tell you the current levels at a 
     given time.  They contain Fades, which are actually children of Cue,
     meaning that Cues can contain Cues.  This is similar to the Light9 concept
-    of Cues and Fades, but without all the Nodes.'''
+    of Cues and Fades, but without all the Nodes."""
     def __init__(self, name, starttime, endtime, *fades):
         'Create a cue'
         self.name = name