I want hide all django-allauth model from admin page
after I see the source code in github I see it use three models SocialAccount, SocialToken and SocialApp.
now I use this to hide model from admin page and it works when I try to use it on my own model but
when I use it to hide django-allauth model it doesnt work, I think I stuck on the part from x import SocialAccount, SocialToken, SocialApp
because the error message is always like this
ImportError: cannot import name 'SocialAccount' from 'x'
I dont know the x part what to import, where to import
