Python: deleting a class attribute in a subclass

You can use delattr(class, field_name) to remove it from the class definition.

Leave a Comment