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 ( a354e5...02c1ae )
by Dmitry
58s
created

RotateFilter.apply()   A

Complexity

Conditions 2

Size

Total Lines 12

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 2
dl 0
loc 12
rs 9.4285
1
"""
2
This module implement a Rotate filter.
3
"""
4
from PIL import Image
5
from .interface import ImagineFilterInterface
6
7
8
class RotateFilter(ImagineFilterInterface):
9
    """
10
    Rotate filter
11
    """
12
    angle = None
13
14
    def __init__(self, **kwargs):
15
        """
16
        :param kwargs: dict
17
        """
18
        if 'angle' in kwargs and isinstance(kwargs['angle'], (int, float)):
19
            self.angle = kwargs.get('angle', 0)
20
        else:
21
            raise ValueError('Unsupported angle format or angle doesn\'t set')
22
23
    def apply(self, resource):
24
        """
25
        Apply filter to resource
26
        :param resource: Image
27
        :return: Image
28
        """
29
        if not isinstance(resource, Image.Image):
30
            raise ValueError('Unknown resource format')
31
32
        resource = resource.rotate(self.angle, expand=True)
33
34
        return resource
35