Skip to content

Commit 9ca63d7

Browse files
committed
Make minor style changes
Signed-off-by: Ravi <jravi248@gmail.com>
1 parent 772b1ed commit 9ca63d7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/extractcode/archive.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
from commoncode import fileutils
3535
from commoncode import filetype
3636
from commoncode import functional
37+
from commoncode.ignore import is_ignored
3738
from commoncode.system import on_linux
3839
from commoncode.system import py2
39-
from commoncode.ignore import is_ignored
4040

4141
from typecode import contenttype
4242

@@ -111,8 +111,8 @@ def should_extract(location, kinds, ignored_extensions=()):
111111
"""
112112
location = os.path.abspath(os.path.expanduser(location))
113113
ignored_extensions = {extension : 'User ignore: Supplied by --ignore' for extension in ignored_extensions}
114-
shouldIgnore = is_ignored(location, ignored_extensions)
115-
if get_extractor(location, kinds) and not shouldIgnore:
114+
should_ignore = is_ignored(location, ignored_extensions)
115+
if get_extractor(location, kinds) and not should_ignore:
116116
return True
117117

118118

0 commit comments

Comments
 (0)