diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-28 20:52:43 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-28 20:53:54 +0200 |
| commit | b49b875439a296a1e6312d12ddb8d2cd8b6d2788 (patch) | |
| tree | 00d0d59a774b98a64dd78b3bbe6621cff5e1723f | |
| parent | c317d8126eda90ae558f5f0a69499288465db777 (diff) | |
Sort imports alphabetically.
| -rwxr-xr-x | cdist | 22 |
1 files changed, 12 insertions, 10 deletions
@@ -17,20 +17,22 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. from __future__ import print_function -import os -import sys -import shutil -import glob -import tempfile + import argparse -import datetime -import subprocess -import re import copy -import inspect +import datetime import getpass -import shlex +import glob +import inspect import multiprocessing +import os +import re +import shlex +import shutil +import subprocess +import sys +import tempfile +import time TEMPORARY_DIRECTORY = '/var/tmp' |
