davidrpugh / pyCollocation

Python package for solving initial value problems (IVP) and two-point boundary value problems (2PBVP).
MIT License
17 stars 8 forks source link

Missing call to super! #29

Closed davidrpugh closed 9 years ago

davidrpugh commented 9 years ago

This method of the SymbolicTwoPointBVPLike class needs to call super...

    def _validate_boundary(self, conditions):
        """Validate a dictionary of lower and upper boundary conditions."""
        bcs = {'lower': self._validate_boundary_exprs(conditions['lower']),
               'upper': self._validate_boundary_exprs(conditions['upper'])}
        return bcs