We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In distanz():
# Size verification if rx != ry: raise("The sizes of x and y do not fit")
when the condition is met the following error message is returned:
TypeError: exceptions must derive from BaseException
Something like the following should fix it:
# Size verification if rx != ry: raise ValueError("The sizes of x and y do not fit")
The text was updated successfully, but these errors were encountered:
325f2b1
No branches or pull requests
In distanz():
when the condition is met the following error message is returned:
Something like the following should fix it:
The text was updated successfully, but these errors were encountered: