Field.remove_from_domain returns None instead of bool (Assignment 3, Python)
Since list.remove returns None, Field.remove_from_domain also returns None. However, in the docstring, it says that it returns "true if the value was removed".
Minimal working example:
from Field import Field
field = Field()
print(field.remove_from_domain(3))
This prints "None" instead of "True".