Skip to content

Commit 751a0d5

Browse files
committed
Fixed markdown indentation
1 parent a6d275b commit 751a0d5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ Print all members part of the archive:
5757
from remotezip import RemoteZip
5858

5959
with RemoteZip('http://.../myfile.zip') as zip:
60-
for zip_info in zip.infolist():
61-
print(zip_info.name)
60+
for zip_info in zip.infolist():
61+
print(zip_info.name)
6262
```
6363

6464

@@ -69,7 +69,7 @@ The following example will extract the file `somefile.txt` from the archive stor
6969
from remotezip import RemoteZip
7070

7171
with RemoteZip('http://.../myfile.zip') as zip:
72-
zip.extract('somefile.txt')
72+
zip.extract('somefile.txt')
7373
```
7474

7575
#### S3 example

0 commit comments

Comments
 (0)