Skip to content

Commit

Permalink
fixed: imports for python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcupial committed Nov 22, 2019
1 parent 1c8e0d9 commit 3d7d92a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion lighthouse/batch.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
from runner import LighthouseRepeatRunner
# Python Standard Library
from itertools import product

# Third party modules
from tqdm import tqdm

# Local imports
from .runner import LighthouseRepeatRunner


class BatchRunner(object):
def __init__(self, urls, form_factors, quiet=True,
additional_settings=None, repeats=3):
Expand Down
2 changes: 1 addition & 1 deletion lighthouse/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from tqdm import tqdm

# Own
from report import LighthouseReport
from .report import LighthouseReport


class LighthouseRunner(object):
Expand Down

0 comments on commit 3d7d92a

Please sign in to comment.