File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 6
6
import os
7
7
import sys
8
8
import argparse
9
- import platform
10
9
import itertools
11
- from struct import unpack_from
12
- from oletools .olevba import VBA_Parser , decompress_stream
13
- from oletools .common import codepages
14
10
15
11
try :
16
12
import win_unicode_console
17
13
WIN_UNICODE_CONSOLE = True
18
14
except ImportError :
19
15
WIN_UNICODE_CONSOLE = False
16
+ from struct import unpack_from
17
+ from oletools .olevba import VBA_Parser , decompress_stream
18
+ from oletools .common import codepages
20
19
21
20
PYTHON2 = sys .version_info [0 ] < 3
22
21
codec = 'latin1' # Assume 'latin1' unless redefined by the 'dir' stream
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def read_md(f): return open(f, 'r').read()
47
47
]
48
48
INSTALL_REQUIRES = [
49
49
'oletools>=0.54' ,
50
- 'win_unicode_console; platform_system == "Windows" and platform_python_implementation != "PyPy"' ,
50
+ 'win_unicode_console; platform_system== "Windows" and platform_python_implementation!= "PyPy"' ,
51
51
]
52
52
53
53
###################################################################
You can’t perform that action at this time.
0 commit comments