diff options
author | 2020-03-04 14:01:02 +0100 | |
---|---|---|
committer | 2020-03-04 14:06:04 +0000 | |
commit | be1067b70c76b71c213a5ebbde52d6f7f74abc2d (patch) | |
tree | 440395825ad092a65888499e3ca1eec81cc7476a /test/vcpe/get_info.py | |
parent | 3bb78c3ee86a5d555d78135fde6b9bab3753a95e (diff) |
Remove unused imports in vcpe python scripts
Unused imports are removed according to pylint report
or ignore rules are added where applicable.
Change-Id: I8c32b5c3f456f0444f8ec8980910d470b7238a7d
Issue-ID: INT-1427
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/vcpe/get_info.py')
-rwxr-xr-x | test/vcpe/get_info.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/vcpe/get_info.py b/test/vcpe/get_info.py index 62e428ad0..71efd183c 100755 --- a/test/vcpe/get_info.py +++ b/test/vcpe/get_info.py @@ -1,16 +1,8 @@ #!/usr/bin/env python -import time import logging import json -import mysql.connector -import ipaddress -import re -import sys -import base64 -from vcpecommon import * -import preload -import vcpe_custom_service +from vcpecommon import * # pylint: disable=W0614 import argparse # Run the script with [-h|--help] to get usage info |