Skip to content

Commit fe7cbf1

Browse files
committed
Merge branch 'py3'
2 parents 1c8e0d9 + 3d7d92a commit fe7cbf1

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

lighthouse/batch.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
from runner import LighthouseRepeatRunner
1+
# Python Standard Library
22
from itertools import product
3+
4+
# Third party modules
35
from tqdm import tqdm
46

7+
# Local imports
8+
from .runner import LighthouseRepeatRunner
9+
10+
511
class BatchRunner(object):
612
def __init__(self, urls, form_factors, quiet=True,
713
additional_settings=None, repeats=3):

lighthouse/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from tqdm import tqdm
1111

1212
# Own
13-
from report import LighthouseReport
13+
from .report import LighthouseReport
1414

1515

1616
class LighthouseRunner(object):

0 commit comments

Comments
 (0)