pep8 compliance: E701 multiple statements on one line (colon)
This commit is contained in:
parent
57c0ac7852
commit
b8fd80af49
@ -89,19 +89,26 @@ def get_font(size, *names, **kwds):
|
|||||||
|
|
||||||
|
|
||||||
class DummySound(object):
|
class DummySound(object):
|
||||||
def fadeout(self, x): pass
|
def fadeout(self, x):
|
||||||
|
pass
|
||||||
|
|
||||||
def get_length(self): return 0.0
|
def get_length(self):
|
||||||
|
return 0.0
|
||||||
|
|
||||||
def get_num_channels(self): return 0
|
def get_num_channels(self):
|
||||||
|
return 0
|
||||||
|
|
||||||
def get_volume(self): return 0.0
|
def get_volume(self):
|
||||||
|
return 0.0
|
||||||
|
|
||||||
def play(self, *args): pass
|
def play(self, *args):
|
||||||
|
pass
|
||||||
|
|
||||||
def set_volume(self, x): pass
|
def set_volume(self, x):
|
||||||
|
pass
|
||||||
|
|
||||||
def stop(self): pass
|
def stop(self):
|
||||||
|
pass
|
||||||
|
|
||||||
dummy_sound = DummySound()
|
dummy_sound = DummySound()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user