Skip to content

Commit 7f2838b

Browse files
committed
STY: Ajust in __init__
1 parent d3eb6dd commit 7f2838b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

botcity/web/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
### PATCH Selenium for Compat ###
2-
from .compat import patch_selenium
3-
patch_selenium()
1+
# PATCH Selenium for compat
2+
from .compat import patch_selenium # noqa: F401, F403, E402
3+
patch_selenium() # noqa: F401, F403, E402
44

5-
from .bot import WebBot, Browser, BROWSER_CONFIGS, By, PageLoadStrategy # noqa: F401, F403
6-
from .parsers import table_to_dict, data_from_row, sanitize_header # noqa: F401, F403
7-
from .util import element_as_select # noqa: F401, F403
5+
from .bot import WebBot, Browser, BROWSER_CONFIGS, By, PageLoadStrategy # noqa: F401, F403, E402
6+
from .parsers import table_to_dict, data_from_row, sanitize_header # noqa: F401, F403, E402
7+
from .util import element_as_select # noqa: F401, F403, E402
88

9-
from botcity.web._version import get_versions
9+
from botcity.web._version import get_versions # noqa: F401, F403, E402
1010
__version__ = get_versions()['version']
1111
del get_versions

0 commit comments

Comments
 (0)