summaryrefslogtreecommitdiff
path: root/sms.py
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-11-02 16:11:00 +0000
committerJohn Glover <glover.john@gmail.com>2010-11-02 16:11:00 +0000
commitf941ad291e1bf249e27ee1a9514e76ddc0ec32fe (patch)
tree32835700c2d9cc190c65cf340f382b7b9ee5fe9c /sms.py
parent08f2885c58cc4ae5e4ecf42aecaa043de2c5bd4c (diff)
downloadsimpl-f941ad291e1bf249e27ee1a9514e76ddc0ec32fe.tar.gz
simpl-f941ad291e1bf249e27ee1a9514e76ddc0ec32fe.tar.bz2
simpl-f941ad291e1bf249e27ee1a9514e76ddc0ec32fe.zip
Added colour to default plots (with heatmap) and some minor code tidying
Diffstat (limited to 'sms.py')
-rw-r--r--sms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sms.py b/sms.py
index c22e871..661218d 100644
--- a/sms.py
+++ b/sms.py
@@ -24,7 +24,7 @@ class SMSPeakDetection(simpl.PeakDetection):
def __init__(self):
# limit this to only 1 instance at a time as calls to libsms are not independent,
# some static C variables are used. These should really be addressed in libsms.
- # todo: silently treat this as a Singleton object rather than raising an exception?
+ # TODO: silently treat this as a Singleton object rather than raising an exception?
SMSPeakDetection._instances += 1
if SMSPeakDetection._instances > 1:
raise Exception("Currently only 1 instance of each SMS analysis/synthesis object can exist at once")