Skip to content

Commit

Permalink
py: sort imports in firefox.webdriver
Browse files Browse the repository at this point in the history
  • Loading branch information
andreastt committed Jan 19, 2016
1 parent 3438ab9 commit f32c761
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions py/selenium/webdriver/firefox/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@
import shutil
import socket
import sys

from .firefox_binary import FirefoxBinary
from .service import Service
from .remote_connection import FirefoxRemoteConnection
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium.webdriver.firefox.extension_connection import ExtensionConnection
from .remote_connection import FirefoxRemoteConnection
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
from selenium.webdriver.remote.webdriver import WebDriver as RemoteWebDriver
from .service import Service


class WebDriver(RemoteWebDriver):
Expand All @@ -38,8 +39,7 @@ class WebDriver(RemoteWebDriver):
NATIVE_EVENTS_ALLOWED = sys.platform != "darwin"

def __init__(self, firefox_profile=None, firefox_binary=None, timeout=30,
capabilities=None, proxy=None, executable_path='wires'):

capabilities=None, proxy=None, executable_path="wires"):
self.binary = firefox_binary
self.profile = firefox_profile

Expand Down

0 comments on commit f32c761

Please sign in to comment.