Skip to content

Commit d277afc

Browse files
committed
fix type is not subscriptable
1 parent 15cd680 commit d277afc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mope/models/payments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class BaseModel(ABC):
99
def from_json(cls, data: Dict[str, Any]) -> None:
1010
pass
1111

12-
def as_dict(self) -> dict[str, Any]:
12+
def as_dict(self) -> Dict[str, Any]:
1313
return asdict(self)
1414

1515

0 commit comments

Comments
 (0)