summaryrefslogtreecommitdiff
path: root/libmat/archive.py
diff options
context:
space:
mode:
authorjvoisin2015-11-03 15:53:42 +0100
committerjvoisin2015-11-03 15:53:42 +0100
commitba615c268f14bd2519dc61746cfa151ce730ec76 (patch)
tree0f827435a869f09a4ce70c127e2003eb0573f791 /libmat/archive.py
parentc9465c4e92f2dd4cd29da26f0ed93c918b0498ba (diff)
Add more type hint
Diffstat (limited to '')
-rw-r--r--libmat/archive.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmat/archive.py b/libmat/archive.py
index 426dcf9..703ee66 100644
--- a/libmat/archive.py
+++ b/libmat/archive.py
@@ -81,6 +81,8 @@ class ZipStripper(GenericArchiveStripper):
81 When list_unsupported is True, the method returns a list 81 When list_unsupported is True, the method returns a list
82 of all non-supported/archives files contained in the 82 of all non-supported/archives files contained in the
83 archive. 83 archive.
84
85 :param bool list_unsupported: Should the list of unsupported files be returned
84 """ 86 """
85 ret_list = [] 87 ret_list = []
86 zipin = zipfile.ZipFile(self.filename, 'r') 88 zipin = zipfile.ZipFile(self.filename, 'r')