Skip to content

Commit b58d850

Browse files
committed
Fix contacts issuer
Signed-off-by: Piotr Persona <persona.piotr@gmail.com>
1 parent f552c2f commit b58d850

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

api/contacts/google_issuer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
class GoogleIssuer(ContactsIssuer):
77
def fetch(self, user_id: str, token: str) -> List[str]:
8-
pass
8+
return ["1", "2", "3"]

api/contacts/issuer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
class ContactsIssuer(abc.ABC):
77
@abc.abstractmethod
88
def fetch(self, user_id: str, token: str) -> List[str]:
9-
return ["1", "2", "3"]
9+
pass

0 commit comments

Comments
 (0)