aboutsummaryrefslogtreecommitdiff
path: root/helpers/action.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2016-07-27 02:01:51 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2016-07-27 02:01:51 +0200
commit6c42e32d98aa2e04d446f31b8e667a280acf4b54 (patch)
treed372a86713857dd3c8f8c99ad2256da51048fad9 /helpers/action.py
parent343822904ee26955e622e325539c64aee1c2112e (diff)
downloadMusicSampler-6c42e32d98aa2e04d446f31b8e667a280acf4b54.tar.gz
MusicSampler-6c42e32d98aa2e04d446f31b8e667a280acf4b54.tar.zst
MusicSampler-6c42e32d98aa2e04d446f31b8e667a280acf4b54.zip
Coding styles
Diffstat (limited to 'helpers/action.py')
-rw-r--r--helpers/action.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/helpers/action.py b/helpers/action.py
index 1f374ec..6ac47b1 100644
--- a/helpers/action.py
+++ b/helpers/action.py
@@ -72,7 +72,8 @@ class Action:
72 def on_enter_loading(self): 72 def on_enter_loading(self):
73 if hasattr(actions, self.action): 73 if hasattr(actions, self.action):
74 if 'music' in self.arguments: 74 if 'music' in self.arguments:
75 self.arguments['music'].subscribe_loaded(self.callback_music_loaded) 75 self.arguments['music'].subscribe_loaded(
76 self.callback_music_loaded)
76 else: 77 else:
77 self.success() 78 self.success()
78 else: 79 else: