GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 2ae6c5...83f514 )
by thatsIch
01:06
created

install_skin_zip()   A

Complexity

Conditions 1

Size

Total Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
dl 0
loc 10
rs 9.4285
1
"""This module handles the business logic to install skins from zip files."""
2
3
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