Skip to content

Commit

Permalink
fix TabError
Browse files Browse the repository at this point in the history
  • Loading branch information
gusibi committed Nov 6, 2018
1 parent dc28efb commit 17cc94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swagger_py_codegen/templates/falcon/validators.tpl
Expand Up @@ -86,7 +86,7 @@ class FalconValidatorAdaptor(object):

def validate(self, value):
value = self.type_convert(value)
errors = list(e.message for e in self.validator.iter_errors(value))
errors = list(e.message for e in self.validator.iter_errors(value))
return normalize(self.validator.schema, value, resolver=resolver)[0], errors


Expand Down

0 comments on commit 17cc94a

Please sign in to comment.