Skip to content

Small bug on run_validation #1

@papagala

Description

@papagala

This does not work since lex is not defined in this scope

    def run_validation(self, validators):
        for error in validators:
            if error:
                return error

        return lex.delegate()

This will work

    def run_validation(self, validators):
        for error in validators:
            if error:
                return error

        return self.delegate()

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions