Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 692 Bytes

ISSUE_TEMPLATE.md

File metadata and controls

33 lines (26 loc) · 692 Bytes

Actual Behavior

# Paste a minimal piece of code that causes the problem. Here is an example:

>>> import wtforms
>>> class F(wtforms.Form):
...     foo = wtforms.StringField()
>>> f = F(foo="bar")
>>> print(f.foo.shrug)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'StringField' object has no attribute 'shrug'

Expected Behavior

# Show us, and explain what behavior you would have expected.
# Here is an example:

>>> import wtforms
>>> class F(wtforms.Form):
...     foo = wtforms.StringField()
>>> f = F(foo="bar")
>>> print(f.foo.shrug)
¯\_()_/¯

Environment

  • Python version:
  • wtforms version: