How to fix "Class X must implement all abstract methods" warning
I'm using the Marshmallow package and all of the classes that I create for it (custom Fields, Schema, etc) are displayed with squiggles for the "Class X must implement all abstract methods". For example, a simple schema:
The above is what the Marshmallow tutorials say to do, and the code all works fine. I can pull up the "Inspection Tool" and see all of the warnings, but have no idea what I need to fix. Is there any way to find out what abstract methods PyCharm thinks I need to implement?
class AccountSchema(Schema): id = fields.Integer() email = fields.Email()
The above is what the Marshmallow tutorials say to do, and the code all works fine. I can pull up the "Inspection Tool" and see all of the warnings, but have no idea what I need to fix. Is there any way to find out what abstract methods PyCharm thinks I need to implement?
Please sign in to leave a comment.
Anyway, good job on figuring it out.