From 327377bb1e6e3691fb7ca51ccd490e07a41f211c Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Tue, 4 Nov 2008 17:07:44 +0100 Subject: [PATCH] Nitpick: remove () from class. Fixes build with python-2.5.2. --- python/musicexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/musicexp.py b/python/musicexp.py index 1b1f3d9183..df54f70106 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -1618,7 +1618,7 @@ class RhythmicStaff (Staff): def __init__ (self, command = "RhythmicStaff"): Staff.__init__ (self, command) -class Score (): +class Score: def __init__ (self): self.contents = None self.create_midi = False -- 2.39.2