File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 77
88from __future__ import print_function
99import argparse
10- from main import run
1110import sys
1211from multiprocessing import Process
1312
13+ from .main import run
14+
1415
1516def main ():
1617 args = parse_args ()
@@ -46,5 +47,6 @@ def parse_args():
4647
4748 return parser .parse_args ()
4849
50+
4951if __name__ == "__main__" :
5052 main ()
Original file line number Diff line number Diff line change 1313import timeit
1414from botocore .vendored .requests .packages import urllib3
1515
16- import event
17- import context
18- from timeout import time_limit
19- from timeout import TimeoutException
16+ from . import event
17+ from . import context
18+ from . timeout import time_limit
19+ from . timeout import TimeoutException
2020
2121logging .basicConfig (stream = sys .stdout ,
2222 level = logging .INFO ,
You can’t perform that action at this time.
0 commit comments