Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit 80a044b

Browse files
committed
fix incompatible type annotation with older python
1 parent e876b54 commit 80a044b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeChallenge/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def add_to_mailing_list(self, list_name: str):
331331
for addr in self._mail_recipients():
332332
mg_list_add(addr, list_name, self.mg_recipient_vars())
333333

334-
def mg_member(self) -> list[dict]:
334+
def mg_member(self):
335335
mg_vars = self.mg_recipient_vars()
336336

337337
members = [

0 commit comments

Comments
 (0)