Skip to content

Commit d0070af

Browse files
committed
specify typing import for wpewebkit options
1 parent 5a19922 commit d0070af

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

py/selenium/webdriver/wpewebkit/options.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
import typing
1817

1918
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
2019
from selenium.webdriver.common.options import ArgOptions
21-
20+
from typing import Dict
2221

2322
class Options(ArgOptions):
2423
KEY = "wpe:browserOptions"
@@ -60,5 +59,5 @@ def to_capabilities(self):
6059
return caps
6160

6261
@property
63-
def default_capabilities(self) -> typing.Dict[str, str]:
62+
def default_capabilities(self) -> Dict[str, str]:
6463
return DesiredCapabilities.WPEWEBKIT.copy()

0 commit comments

Comments
 (0)