Passed
Pull Request — master (#318)
by Jaisen
02:04
created

elodie.plugins.googlephotos.googlephotos   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 0
1
"""
2
Google Photos plugin object.
3
4
.. moduleauthor:: Jaisen Mathai <[email protected]>
5
"""
6
from __future__ import print_function
7
from builtins import object
8
9
10
class GooglePhotos(object):
11
    """A class to execute plugin actions."""
12
    pass
13