We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 272fdfc commit f4e782aCopy full SHA for f4e782a
1 file changed
bagit.py
@@ -31,20 +31,19 @@
31
% bagit.py --help
32
"""
33
34
-import os
35
-import re
36
-import sys
37
import codecs
38
-import signal
39
import hashlib
40
import logging
+import multiprocessing
41
import optparse
+import os
+import re
+import signal
42
+import sys
43
import tempfile
-import multiprocessing
44
-
45
-from os import listdir
46
from datetime import date
47
-from os.path import isdir, isfile, join, abspath
+from os import listdir
+from os.path import abspath, isdir, isfile, join
48
49
logger = logging.getLogger(__name__)
50
0 commit comments