Skip to content

Commit

Permalink
update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Mar 20, 2024
1 parent 10d58f9 commit e52aff8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/files/input_types/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


class InputTypesSerializer(rest.ModelSerializer):

class Meta:
model = InputTypes
fields = "__all__"
Expand Down
1 change: 1 addition & 0 deletions tests/files/nestedfk/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


class ItemSerializer(rest.ModelSerializer):

class Meta:
model = Item
exclude = ("nestedfk",)
Expand Down
2 changes: 2 additions & 0 deletions tests/files/repeat/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@


class ItemSerializer(rest.ModelSerializer):

class Meta:
model = Item
exclude = ("repeat",)
wq_field_config = {"count": {"control": {"appearance": "counter"}}}


class DataSerializer(rest.ModelSerializer):

class Meta:
model = Data
exclude = ("repeat",)
Expand Down
1 change: 1 addition & 0 deletions tests/files/select/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


class SelectSerializer(rest.ModelSerializer):

class Meta:
model = Select
fields = "__all__"
Expand Down

0 comments on commit e52aff8

Please sign in to comment.