From 64c72b1a68d240100cfb58bbff1f8ff17cba299a Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 16 Jul 2018 13:33:21 +0200 Subject: [PATCH] Make PyLint happy --- calsocial/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calsocial/forms.py b/calsocial/forms.py index 843aeab..846715e 100644 --- a/calsocial/forms.py +++ b/calsocial/forms.py @@ -216,7 +216,7 @@ class EventForm(FlaskForm): def __init__(self, *args, **kwargs): from flask_security import current_user - self.time_zone.kwargs['default'] = current_user.timezone + self.time_zone.kwargs['default'] = current_user.timezone # pylint: disable=no-member FlaskForm.__init__(self, *args, **kwargs)