Skip to content

Commit f807530

Browse files
committed
fix lint
1 parent 5c367ae commit f807530

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

graphql/contrib/django/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,32 @@ def convert_django_field(field, schema):
99

1010

1111
@convert_django_field.register(models.CharField)
12-
def _(field, schema):
12+
def _(field, schema): # flake8: noqa
1313
return schema.Field(schema.String)
1414

1515

1616
@convert_django_field.register(models.AutoField)
17-
def _(field, schema):
17+
def _(field, schema): # flake8: noqa
1818
return schema.Field(schema.ID)
1919

2020

2121
@convert_django_field.register(models.IntegerField)
22-
def _(field, schema):
22+
def _(field, schema): # flake8: noqa
2323
return schema.Field(schema.Int)
2424

2525

2626
@convert_django_field.register(models.BigIntegerField)
27-
def _(field, schema):
27+
def _(field, schema): # flake8: noqa
2828
raise NotImplemented
2929

3030

3131
@convert_django_field.register(models.BooleanField)
32-
def _(field, schema):
32+
def _(field, schema): # flake8: noqa
3333
return schema.Field(schema.Boolean)
3434

3535

3636
@convert_django_field.register(models.FloatField)
37-
def _(field, schema):
37+
def _(field, schema): # flake8: noqa
3838
return schema.Field(schema.Float)
3939

4040

0 commit comments

Comments
 (0)