From 491c207748e535413af4ea4617c922ed7a27e0fc Mon Sep 17 00:00:00 2001 From: Bryan Kimani Date: Fri, 23 Feb 2018 22:56:03 +0300 Subject: [PATCH] Update actions.py > Have the imports from `__future__` in one line. This saves the number of lines to be written > Reduce Unnecessary line space between imports. see https://www.python.org/dev/peps/pep-0008/ for more info Great Job though --- Full Code/actions.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Full Code/actions.py b/Full Code/actions.py index 64d2e86..190c9ae 100644 --- a/Full Code/actions.py +++ b/Full Code/actions.py @@ -1,7 +1,4 @@ -from __future__ import absolute_import -from __future__ import division -from __future__ import unicode_literals - +from __future__ import absolute_import, division, unicode_literals from rasa_core.actions.action import Action from rasa_core.events import SlotSet