Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tarepan committed Nov 27, 2023
1 parent 63588bc commit ea65dc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_acoustic_feature_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class TestOjtPhoneme(TestBasePhoneme):
def setUp(self):
super().setUp()
str_hello_hiho = "sil k o N n i ch i w a pau h i h o d e s U sil"
self.ojt_hello_hiho = OjtPhoneme.convert([
OjtPhoneme(s, i, i + 1) for i, s in enumerate(str_hello_hiho.split())
])
self.ojt_hello_hiho = OjtPhoneme.convert(
[OjtPhoneme(s, i, i + 1) for i, s in enumerate(str_hello_hiho.split())]
)

def test_repr_(self):
self.assertEqual(
Expand Down

0 comments on commit ea65dc8

Please sign in to comment.