linting: added two lines after end of class

This commit is contained in:
Anis Jonischkeit 2018-02-27 10:21:41 +10:00 committed by GitHub
parent 84fbf5dc23
commit 1a1efbd77d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,6 +43,7 @@ class Date(Scalar):
except iso8601.ParseError: except iso8601.ParseError:
return None return None
class DateTime(Scalar): class DateTime(Scalar):
''' '''
The `DateTime` scalar type represents a DateTime The `DateTime` scalar type represents a DateTime
@ -69,6 +70,7 @@ class DateTime(Scalar):
except iso8601.ParseError: except iso8601.ParseError:
return None return None
class Time(Scalar): class Time(Scalar):
''' '''
The `Time` scalar type represents a Time value as The `Time` scalar type represents a Time value as