Skip to content

Commit efca50c

Browse files
authored
Merge c529d34 into 52bf1ed
2 parents 52bf1ed + c529d34 commit efca50c

4 files changed

Lines changed: 4 additions & 13 deletions

File tree

source/globalCommands.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@
66
# Leonard de Ruijter, Derek Riemer, Babbage B.V., Davy Kager, Ethan Holliger, Łukasz Golonka, Accessolutions,
77
# Julien Cochuyt
88

9-
import time
109
import itertools
1110
from typing import Optional
1211

13-
import tones
1412
import audioDucking
1513
import touchHandler
1614
import keyboardHandler
@@ -25,7 +23,6 @@
2523
from NVDAObjects import NVDAObject, NVDAObjectTextInfo
2624
import globalVars
2725
from logHandler import log
28-
from synthDriverHandler import *
2926
import gui
3027
import wx
3128
import config
@@ -34,13 +31,13 @@
3431
import winKernel
3532
import treeInterceptorHandler
3633
import browseMode
34+
import languageHandler
3735
import scriptHandler
3836
from scriptHandler import script
3937
import ui
4038
import braille
4139
import brailleInput
4240
import inputCore
43-
import virtualBuffers
4441
import characterProcessing
4542
from baseObject import ScriptableObject
4643
import core

source/gui/settingsDialogs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
# This file is covered by the GNU General Public License.
77
# See the file COPYING for more details.
88
import logging
9-
from abc import ABCMeta
9+
from abc import ABCMeta, abstractmethod
1010
import copy
11+
import os
1112

1213
import wx
1314
from vision.providerBase import VisionEnhancementProviderSettings
@@ -17,8 +18,7 @@
1718
import winUser
1819
import logHandler
1920
import installer
20-
from synthDriverHandler import *
21-
from synthDriverHandler import SynthDriver, getSynth
21+
from synthDriverHandler import changeVoice, getSynth, getSynthList, setSynth, SynthDriver
2222
import config
2323
import languageHandler
2424
import speech

source/sayAllHandler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import weakref
77
import garbageHandler
88
import speech
9-
import synthDriverHandler
109
from logHandler import log
1110
import config
1211
import controlTypes

source/synthDriverHandler.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
1-
# -*- coding: UTF-8 -*-
2-
# synthDriverHandler.py
31
# A part of NonVisual Desktop Access (NVDA)
42
# This file is covered by the GNU General Public License.
53
# See the file COPYING for more details.
64
# Copyright (C) 2006-2019 NV Access Limited, Peter Vágner, Aleksey Sadovoy,
75
# Joseph Lee, Arnold Loubriat, Leonard de Ruijter
86

9-
import os
107
import pkgutil
118
import importlib
129
from typing import Optional
1310
from locale import strxfrm
1411

1512
import config
16-
import baseObject
1713
import winVersion
1814
import globalVars
1915
from logHandler import log
@@ -23,7 +19,6 @@
2319
import extensionPoints
2420
import synthDrivers
2521
import driverHandler
26-
from driverHandler import StringParameterInfo # noqa: F401 # Backwards compatibility
2722
from abc import abstractmethod
2823

2924

0 commit comments

Comments
 (0)