nixos/testdriver: sort imports

This commit is contained in:
Jörg Thalheim 2020-08-25 10:15:24 +01:00
parent 392415c285
commit f3c0a09c76
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
1 changed files with 8 additions and 7 deletions

View File

@ -1,17 +1,13 @@
#! /somewhere/python3 #! /somewhere/python3
from contextlib import contextmanager
from typing import Tuple, Any, Callable, Dict, Iterator, Optional, List
import queue
import io
import _thread
import argparse import argparse
import atexit import atexit
import base64 import base64
import io
import logging
import os import os
import pathlib import pathlib
import logging
import ptpython.repl
import pty import pty
import queue
import re import re
import shlex import shlex
import shutil import shutil
@ -19,7 +15,12 @@ import socket
import subprocess import subprocess
import sys import sys
import tempfile import tempfile
import _thread
import time import time
from contextlib import contextmanager
from typing import Any, Callable, Dict, Iterator, List, Optional, Tuple
import ptpython.repl
CHAR_TO_KEY = { CHAR_TO_KEY = {
"A": "shift-a", "A": "shift-a",