def get_user(self, user_id): User = Query() user = self.tinydb.get(User.user_id == user_id) return user["data"] if user else {}