Remove unnecessary tuple -> list coercion
This commit is contained in:
@@ -58,7 +58,6 @@ class PENumberValidator(object):
|
|||||||
"Your request will need to go through a manual review."
|
"Your request will need to go through a manual review."
|
||||||
).format('Did you mean "{}"? '.format(suggestion) if suggestion else "")
|
).format('Did you mean "{}"? '.format(suggestion) if suggestion else "")
|
||||||
field.errors += (error_str,)
|
field.errors += (error_str,)
|
||||||
field.errors = list(field.errors)
|
|
||||||
|
|
||||||
|
|
||||||
class TaskOrderNumberValidator(object):
|
class TaskOrderNumberValidator(object):
|
||||||
@@ -73,4 +72,3 @@ class TaskOrderNumberValidator(object):
|
|||||||
|
|
||||||
def _apply_error(self, field):
|
def _apply_error(self, field):
|
||||||
field.errors += ("Task Order number not found",)
|
field.errors += ("Task Order number not found",)
|
||||||
field.errors = list(field.errors)
|
|
||||||
|
Reference in New Issue
Block a user