File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ def index(x):
285
285
286
286
END_STRING_MARK = 0xffff
287
287
endMarkersCount = 0
288
- def setEndStringMark (x ):
288
+ def setEndStringMark ():
289
289
global endMarkersCount , END_STRING_MARK
290
290
dll .eciInsertIndex (handle , END_STRING_MARK )
291
291
endMarkersCount += 1
Original file line number Diff line number Diff line change @@ -136,11 +136,11 @@ def speak(self,speechSequence):
136
136
log .debugWarning ("Unsupported speech command: %s" % item )
137
137
else :
138
138
log .error ("Unknown speech: %s" % item )
139
- if last is not None and not last [- 1 ] in punctuation : outlist .append ((_ibmeci .speak , (b'`p1. ' ,)))
140
- outlist .append ((_ibmeci .setEndStringMark , (None , )))
139
+ if last is not None and not last [- 1 ] in punctuation : outlist .append ((_ibmeci .speak , (b'`p1' ,)))
140
+ outlist .append ((_ibmeci .setEndStringMark , ()))
141
141
142
142
outlist .append ((_ibmeci .speak , (b"`ts0" ,)))
143
- outlist .append ((_ibmeci .synth ,()))
143
+ outlist .append ((_ibmeci .synth , ()))
144
144
_ibmeci .synthQueue .put (outlist )
145
145
_ibmeci .process ()
146
146
You can’t perform that action at this time.
0 commit comments