Skip to content

Commit

Permalink
Merge pull request subzeroid#1528 from DakaRRR/fix/type_error
Browse files Browse the repository at this point in the history
fix: TypeError: 'type' object is not subscriptable.
  • Loading branch information
adw0rd authored Aug 11, 2023
2 parents 469c169 + 1934c86 commit f10b5c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion instagrapi/mixins/note.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from typing import List

from instagrapi.types import Note


class NoteMixin:
def get_notes(self) -> list[Note]:
def get_notes(self) -> List[Note]:
"""
Retrieves Notes in Direct
Expand Down

0 comments on commit f10b5c7

Please sign in to comment.