Skip to content

Commit 3945ff6

Browse files
committed
chore(imports): correct imports
1 parent fd601c2 commit 3945ff6

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/conf.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139

140140
# Custom sidebar templates, maps document names to template names.
141141
html_sidebars = {
142-
'**': ['localtoc.html','sidebarintro.html', 'relations.html', 'sourcelink.html', 'searchbox.html']
142+
'**': ['localtoc.html', 'sidebarintro.html', 'relations.html', 'sourcelink.html', 'searchbox.html']
143143
}
144144

145145
# Additional templates that should be rendered to pages, maps page names to
@@ -192,17 +192,17 @@
192192
# -- Options for LaTeX output ---------------------------------------------
193193

194194
latex_elements = {
195-
# The paper size ('letterpaper' or 'a4paper').
196-
#'papersize': 'letterpaper',
195+
# The paper size ('letterpaper' or 'a4paper').
196+
#'papersize': 'letterpaper',
197197

198-
# The font size ('10pt', '11pt' or '12pt').
199-
#'pointsize': '10pt',
198+
# The font size ('10pt', '11pt' or '12pt').
199+
#'pointsize': '10pt',
200200

201-
# Additional stuff for the LaTeX preamble.
202-
#'preamble': '',
201+
# Additional stuff for the LaTeX preamble.
202+
#'preamble': '',
203203

204-
# Latex figure (float) alignment
205-
#'figure_align': 'htbp',
204+
# Latex figure (float) alignment
205+
#'figure_align': 'htbp',
206206
}
207207

208208
# Grouping the document tree into LaTeX files. List of tuples

examples/assistant_tone_analyzer_integration/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from .watson_service import WatsonService
16-
from .watson_service import WatsonException
15+
from .ibm_watson import WatsonService
16+
from .ibm_watson import WatsonException
1717
from .assistant import AssistantV1
1818
from .tone_analyzer_v3 import ToneAnalyzerV3
1919

examples/assistant_tone_analyzer_integration/tone_assistant_integration.v1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import os
44
from dotenv import load_dotenv, find_dotenv
55

6-
from watson_developer_cloud import AssistantV1
7-
from watson_developer_cloud import ToneAnalyzerV3
6+
from ibm_watson import AssistantV1
7+
from ibm_watson import ToneAnalyzerV3
88

99
# import tone detection
1010
import tone_detection

examples/microphone-speech-to-text.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
from __future__ import print_function
1010
import pyaudio
11-
from watson_developer_cloud import SpeechToTextV1
12-
from watson_developer_cloud.websocket import RecognizeCallback, AudioSource
11+
from ibm_watson import SpeechToTextV1
12+
from ibm_watson.websocket import RecognizeCallback, AudioSource
1313
from threading import Thread
1414

1515
try:

examples/speaker_text_to_speech.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# audio, the pyaudio would play it in a blocking mode
77

88
from __future__ import print_function
9-
from watson_developer_cloud import TextToSpeechV1
10-
from watson_developer_cloud.websocket import SynthesizeCallback
9+
from ibm_watson import TextToSpeechV1
10+
from ibm_watson.websocket import SynthesizeCallback
1111
import pyaudio
1212

1313
# If service instance provides API key authentication

0 commit comments

Comments
 (0)