1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

utils/android: Reorder imports

This commit is contained in:
Marc Bonnici 2021-01-05 16:55:35 +00:00 committed by setrofim
parent c0a5765da5
commit e251b158b2

View File

@ -20,18 +20,19 @@ Utility functions for working with Android devices through adb.
"""
# pylint: disable=E1103
import glob
import os
import re
import sys
import time
import logging
import tempfile
import subprocess
from collections import defaultdict
import os
import pexpect
import re
import subprocess
import sys
import tempfile
import time
import uuid
import xml.etree.ElementTree
import zipfile
import uuid
from collections import defaultdict
try:
from shlex import quote