Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / ie_bridges / python / sample / benchmark_app / benchmark / benchmark.py
@@ -1,6 +1,5 @@
-#!/usr/bin/env python
 """
- Copyright (c) 2018 Intel Corporation
+ Copyright (C) 2018-2019 Intel Corporation
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
@@ -18,7 +17,7 @@
 from statistics import median
 from openvino.inference_engine import IENetwork, IEPlugin
 
-from utils.benchmark_utils import *
+from .utils.benchmark_utils import *
 
 def main(args=None):
     try:
@@ -198,7 +197,3 @@ def main(args=None):
 
     except Exception as e:
         logging.exception(e)
-
-
-if __name__ == "__main__":
-    main()