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   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 27
Duplicated Lines 0 %
Metric Value
dl 0
loc 27
rs 10
wmc 5

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 8 3
A apply() 0 12 2
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