Skip to content

Commit

Permalink
blacked the code
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Sep 9, 2021
1 parent 2b68daa commit 04beb3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/fields/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ class Inside(Form):
foo = StringField(default="default")

class Outside(Form):
subforms = FieldList(FormField(Inside, separator="_"), min_entries=1, separator="_")
subforms = FieldList(
FormField(Inside, separator="_"), min_entries=1, separator="_"
)

o = Outside()
assert o.subforms[0].foo.data == "default"
Expand Down

0 comments on commit 04beb3c

Please sign in to comment.