Unverified Commit 601ad2fd authored by Maxim Belkin's avatar Maxim Belkin
Browse files

lesson_check: get_val is a static method

parent 8cdca1d4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -399,7 +399,8 @@ class CheckBase(object):
                    return False
        return True

    def get_val(self, node, *chain):
    @staticmethod
    def get_val(node, *chain):
        """Get value one or more levels down."""

        curr = node