Skip to content

Commit 0303c9d

Browse files
committed
Clean up imports
1 parent 51299a1 commit 0303c9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
""" This is the pytest configuration file """
22

3+
import optparse
34
import os
45
import shutil
56
import time
6-
from optparse import SUPPRESS_HELP
77
from seleniumbase.config import settings
88
from seleniumbase.fixtures import constants
99

@@ -43,7 +43,7 @@ def pytest_addoption(parser):
4343
dest='database_env',
4444
choices=('prod', 'qa', 'test'),
4545
default='test',
46-
help=SUPPRESS_HELP)
46+
help=optparse.SUPPRESS_HELP)
4747
parser.addoption('--with-s3_logging', action="store_true",
4848
dest='with_s3_logging',
4949
default=False,

0 commit comments

Comments
 (0)