Skip to content

Commit

Permalink
fix: typing for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
thearchitector committed Sep 17, 2024
1 parent 2e05b7e commit c16e83b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indico/types/submission_file.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any
from typing import Any, Dict

from indico.types import BaseType

Expand Down Expand Up @@ -27,4 +27,4 @@ class SubmissionFile(BaseType):
filetype: str
file_size: int
num_pages: int
meta: dict[str, Any]
meta: Dict[str, Any]

0 comments on commit c16e83b

Please sign in to comment.