dist: support armv7hl
[platform/upstream/dldt.git] / model-optimizer / mo.py
index 496e4e0..5c6f305 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python3
 
 """
- 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 +18,7 @@
 
 import sys
 
-from mo.utils.versions_checker import check_python_version
+from mo.utils.versions_checker import check_python_version  # pylint: disable=no-name-in-module
 
 if __name__ == "__main__":
     ret_code = check_python_version()
@@ -26,6 +26,6 @@ if __name__ == "__main__":
         sys.exit(ret_code)
 
     from mo.main import main
-    from mo.utils.cli_parser import get_all_cli_parser
+    from mo.utils.cli_parser import get_all_cli_parser  # pylint: disable=no-name-in-module
 
     sys.exit(main(get_all_cli_parser(), None))