Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bd7761b

Browse files
Fix typo in zipfile_hypothesis fuzzer
1 parent 032f0ce commit bd7761b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

zipfile_hypothesis.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ def zip_archives(draw):
6868

6969

7070
def zipinfo_dict(zi):
71-
return {k: getattr(zip, k, None) for k in zi.__slots__}
72-
71+
return {k: getattr(zi, k, None) for k in zi.__slots__}
7372

7473

7574
@given(zip_archives())

0 commit comments

Comments
 (0)