Skip to content

Commit ca62811

Browse files
committed
Refactoring
1 parent 886cba1 commit ca62811

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

seleniumbase/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1+
import collections
2+
import sys
13
from selenium import webdriver
24
from seleniumbase.__version__ import __version__
5+
from seleniumbase.common import decorators # noqa
6+
from seleniumbase.common import encryption # noqa
37
from seleniumbase.core.browser_launcher import get_driver # noqa
48
from seleniumbase.fixtures import js_utils # noqa
59
from seleniumbase.fixtures import page_actions # noqa
610
from seleniumbase.fixtures.base_case import BaseCase # noqa
711
from seleniumbase.masterqa.master_qa import MasterQA # noqa
8-
from seleniumbase.common import decorators # noqa
9-
from seleniumbase.common import encryption # noqa
10-
import collections
11-
import sys
1212

1313
if sys.version_info[0] >= 3:
1414
from seleniumbase import translate # noqa
@@ -20,5 +20,5 @@
2020
del sys # Undo "import sys" / Simplify "dir(seleniumbase)"
2121
del webdriver # Undo "import webdriver" / Simplify "dir(seleniumbase)"
2222

23-
version_info = [int(i) for i in __version__.split(".") if i.isdigit()] # noqa
23+
version_info = [int(i) for i in __version__.split(".") if i.isdigit()]
2424
version_tuple = tuple(version_info) # noqa

0 commit comments

Comments
 (0)