Skip to content

Commit 25e8487

Browse files
author
James Polera
committed
Fixing documentation... again..........
1 parent 137d85f commit 25e8487

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,19 @@ Usage
1111

1212
zipping files and/or directories
1313
--
14-
* Zippy's Zip takes the name of a .zip file to create.
15-
* The add_files method takes a list of files and/or directories.
16-
i.e.:
14+
Zippy's Zip takes the name of a .zip file to create.
15+
The add_files method takes a list of files and/or directories.
1716

1817
from zippy.zippy import Zip
1918
Zip('name_of_zipfile.zip').add_files(['your_directory'])
2019
Zip('name_of_other_zipfile.zip').add_files(['file3.txt'])
2120

2221
unzipping files
2322
--
24-
* Zippy's Unzip takes the name of a .zip file to open.
25-
* The "contents" property returns a list of the .zip file's contents.
26-
* The to_path method takes the name of a path to extract the .zip file to. It returns
27-
True on success, False on failure.
23+
Zippy's Unzip takes the name of a .zip file to open.
24+
The "contents" property returns a list of the .zip file's contents.
25+
The to_path method takes the name of a path to extract the .zip file to. It returns
26+
True on success, False on failure.
2827
i.e.:
2928

3029
from zippy.zippy import Unzip

0 commit comments

Comments
 (0)