Add PyLint as a development dependency

Use `pylint calsocial` to run the static analysis.
This commit is contained in:
2018-07-03 08:33:49 +02:00
parent 5283599da2
commit 531faa1ce7
7 changed files with 464 additions and 9 deletions

View File

@@ -30,10 +30,10 @@ def to_timestamp(func):
"""
@wraps(func)
def decorator(*args, **kwargs):
def _decorator(*args, **kwargs):
return func(*args, **kwargs).timestamp()
return decorator
return _decorator
class GregorianCalendar(CalendarSystem):