Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """This module handles the business logic to install skins from zip files.""" |
||
4 | def install_skin_zip(skin_zip): |
||
5 | """ |
||
6 | Install a zipped skin into the Rainmeter skins folder. |
||
7 | |||
8 | Main entry point for this module. |
||
9 | Expects a valid filepath to a zip file. |
||
10 | The zip file is determined by its extension. |
||
11 | The skin will be extracted and handled by the from_folder module. |
||
12 | """ |
||
13 | print(skin_zip) |
||
14 |