Skip to content

Commit 24ab4b1

Browse files
committed
Fix whitespace spotted by newer black rules
1 parent 41f9385 commit 24ab4b1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sgqlc/types/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2924,26 +2924,31 @@ class Int(Scalar):
29242924

29252925
class Float(Scalar):
29262926
'Maps GraphQL ``Float`` to Python ``float``.'
2927+
29272928
converter = float
29282929

29292930

29302931
class String(Scalar):
29312932
'Maps GraphQL ``String`` to Python ``str``.'
2933+
29322934
converter = str
29332935

29342936

29352937
class Boolean(Scalar):
29362938
'Maps GraphQL ``Boolean`` to Python ``bool``.'
2939+
29372940
converter = bool
29382941

29392942

29402943
class ID(Scalar):
29412944
'Maps GraphQL ``ID`` to Python ``str``.'
2945+
29422946
converter = str
29432947

29442948

29452949
class UnknownType(Type):
29462950
'Type found in the response that was not present in schema'
2951+
29472952
__auto_register = False # do not expose this in Schema, just subclasses
29482953

29492954

0 commit comments

Comments
 (0)