diff options
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/camera_test | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/bin/camera_test b/bin/camera_test index 397d5f9..c3e554c 100755 --- a/bin/camera_test +++ b/bin/camera_test @@ -26,22 +26,22 @@ # along with Checkbox. If not, see <http://www.gnu.org/licenses/>. # +import argparse +import ctypes +import errno +import fcntl +import imghdr +import logging import os import re +import struct import sys -import logging import time -import errno -import fcntl -import ctypes -import struct -import imghdr -from tempfile import NamedTemporaryFile -from subprocess import check_call, CalledProcessError, STDOUT -import argparse -from glob import glob from gi.repository import GObject +from glob import glob +from subprocess import check_call, CalledProcessError, STDOUT +from tempfile import NamedTemporaryFile _IOC_NRBITS = 8 |
