You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
customer_postal_code=models.CharField(
_('customer postal code'),
max_length=5,
validators=[RegexValidator(regex=zip_regex, message=_('Enter a zip code in the format XXXX.'))],
)
Reported line next line: validators=[RegexValidator(regex=zip_regex, message=_('Enter a zip code in the format XXXX.'))],
as TODO entry.
We have a string literal like,
shirt_size = 'XXXL'
orshirt_size = 'XXXXL'
, which been reported as TODO entry.I would be nice if flake8-todo can ignore string literals.
Thanks
The text was updated successfully, but these errors were encountered: