Skip to content

Commit

Permalink
add revisions to generic data type
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Mar 3, 2024
1 parent 1141dbf commit e6dd0d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion joppy/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ def default_fields() -> Set[str]:
return {"id", "item_type", "item_id", "type", "created_time"}


T = TypeVar("T", EventData, NoteData, NotebookData, ResourceData, TagData, str)
T = TypeVar(
"T", EventData, NoteData, NotebookData, ResourceData, RevisionData, TagData, str
)


@dataclass
Expand Down

0 comments on commit e6dd0d0

Please sign in to comment.