Мне нужно знать, где я могу найти ошибку в коде?

class UserAccountInfo(View): @staticmethod def details(user): result = { "user_id": user.id, "profile_id": user.userprofile.id, "имя": user.userprofile.name, "phone": user.userprofile.phone return result

Вернуться на верх