django-hattori
django-hattori copied to clipboard
App name before the model name in the output when model comes from another app
I needed to anonimyze the User
model data from django.contrib.auth.models
, so I wrote an anonymizer in an app of our project but referring to a the model outside the app.
That worked good, as expected, but when showing results in terminal it adds that app name:
Considering that User
model doesn't come from that app, should be this the expected behaviour?
On the other hand, where should we put those anonymizers from models that doesn't come from our project apps?
Thanks in advance and good job! :grinning: