Proper arguments ordering

This commit is contained in:
lissyx 2020-03-06 10:15:18 +01:00 committed by GitHub
parent 61fa1ad428
commit 0f8291df71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class Alphabet(object):
raise KeyError( raise KeyError(
'ERROR: Your transcripts contain characters (e.g. \'{}\') which do not occur in \'{}\'! Use ' \ 'ERROR: Your transcripts contain characters (e.g. \'{}\') which do not occur in \'{}\'! Use ' \
'util/check_characters.py to see what characters are in your [train,dev,test].csv transcripts, and ' \ 'util/check_characters.py to see what characters are in your [train,dev,test].csv transcripts, and ' \
'then add all these to \'{}\'.'.format(self._config_file, string, self._config_file) 'then add all these to \'{}\'.'.format(string, self._config_file, self._config_file)
).with_traceback(e.__traceback__) ).with_traceback(e.__traceback__)
def has_char(self, char): def has_char(self, char):