From 1a1efbd77d3958110747a3cbe9638cacab33d148 Mon Sep 17 00:00:00 2001 From: Anis Jonischkeit Date: Tue, 27 Feb 2018 10:21:41 +1000 Subject: [PATCH] linting: added two lines after end of class --- graphene/types/datetime.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graphene/types/datetime.py b/graphene/types/datetime.py index b3e14682..c3c78fb2 100644 --- a/graphene/types/datetime.py +++ b/graphene/types/datetime.py @@ -43,6 +43,7 @@ class Date(Scalar): except iso8601.ParseError: return None + class DateTime(Scalar): ''' The `DateTime` scalar type represents a DateTime @@ -69,6 +70,7 @@ class DateTime(Scalar): except iso8601.ParseError: return None + class Time(Scalar): ''' The `Time` scalar type represents a Time value as