From db781d6b5415a48318046723701da3c27771840b Mon Sep 17 00:00:00 2001 From: Daliseiy <44264075+Daliseiy@users.noreply.github.com> Date: Tue, 4 Jul 2023 19:08:59 +0100 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 298fb26..439f218 100644 --- a/README.md +++ b/README.md @@ -302,7 +302,7 @@ also checks if the profile is creator, then it's better to rename `creator_id` p ```python3 # src.profiles.dependencies async def valid_profile_id(profile_id: UUID4) -> Mapping: - profile = await service.get_by_id(post_id) + profile = await service.get_by_id(profile_id) if not profile: raise ProfileNotFound()