From: Paul Brossier Date: Thu, 22 Sep 2016 23:27:21 +0000 (+0200) Subject: python/tests/test_source.py: break long line X-Git-Tag: 0.4.4~196 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=50a82601a2b01542ccd0c5ea07b08e195c76c1f8;p=aubio.git python/tests/test_source.py: break long line --- diff --git a/python/tests/test_source.py b/python/tests/test_source.py index 4e245842..319121fb 100755 --- a/python/tests/test_source.py +++ b/python/tests/test_source.py @@ -25,7 +25,8 @@ for soundfile in list_of_sounds: class aubio_source_test_case_base(TestCase): def setUp(self): - if not len(list_of_sounds): self.skipTest('add some sound files in \'python/tests/sounds\'') + if not len(list_of_sounds): + self.skipTest('add some sound files in \'python/tests/sounds\'') self.default_test_sound = list_of_sounds[0] class aubio_source_test_case(aubio_source_test_case_base):