Ad
  • Custom User Avatar

    The initial solution in python does not have any function body for __init__, I'm not sure where you're getting that from.

    That said, you should never raise a BaseException. The exact exception type doesn't matter for this kata, but it should be a concrete type, not the base class. Try raise ValueError(...), it will fix your issue.