chrisbouchard / easyrepr

Python decorator to automatically generate repr strings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow a class to prevent searching for ancestor repr methods

chrisbouchard opened this issue · comments

We should add an option to EasyRepr to prevent the automatic search for ancestor repr methods, so that a class can completely override its parent's repr even if they're both using EasyRepr.

Maybe something like @easyrepr(override=True).