File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,32 +9,32 @@ def convert_django_field(field, schema):
9
9
10
10
11
11
@convert_django_field .register (models .CharField )
12
- def _ (field , schema ):
12
+ def _ (field , schema ): # flake8: noqa
13
13
return schema .Field (schema .String )
14
14
15
15
16
16
@convert_django_field .register (models .AutoField )
17
- def _ (field , schema ):
17
+ def _ (field , schema ): # flake8: noqa
18
18
return schema .Field (schema .ID )
19
19
20
20
21
21
@convert_django_field .register (models .IntegerField )
22
- def _ (field , schema ):
22
+ def _ (field , schema ): # flake8: noqa
23
23
return schema .Field (schema .Int )
24
24
25
25
26
26
@convert_django_field .register (models .BigIntegerField )
27
- def _ (field , schema ):
27
+ def _ (field , schema ): # flake8: noqa
28
28
raise NotImplemented
29
29
30
30
31
31
@convert_django_field .register (models .BooleanField )
32
- def _ (field , schema ):
32
+ def _ (field , schema ): # flake8: noqa
33
33
return schema .Field (schema .Boolean )
34
34
35
35
36
36
@convert_django_field .register (models .FloatField )
37
- def _ (field , schema ):
37
+ def _ (field , schema ): # flake8: noqa
38
38
return schema .Field (schema .Float )
39
39
40
40
You can’t perform that action at this time.
0 commit comments