From 9c72bd958da2ab50d0b0ea567efc0f93661007e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 22 Jul 2016 14:57:11 +0200 Subject: [PATCH] pylint: reorder imports --- chrono/manager/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrono/manager/forms.py b/chrono/manager/forms.py index 7c499a0d..2076bcd5 100644 --- a/chrono/manager/forms.py +++ b/chrono/manager/forms.py @@ -16,10 +16,10 @@ from django import forms -from . import widgets - from chrono.agendas.models import Event +from . import widgets + DATETIME_OPTIONS = { 'weekStart': 1,