Skip to content

Commit 3a94f55

Browse files
committed
Fixes readme
1 parent de328e8 commit 3a94f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class FetchUserProfile(object):
181181
"""Single responsibility callable object that fetches user profile."""
182182

183183
@pipeline
184-
def __call__(self, user_id: int) -> Result[IO['UserProfile'], Exception]]:
184+
def __call__(self, user_id: int) -> Result[IO['UserProfile'], Exception]:
185185
"""Fetches UserProfile dict from foreign API."""
186186
response = self._make_request(user_id).unwrap()
187187
return self._parse_json(response)

0 commit comments

Comments
 (0)