Skip to content

Commit

Permalink
fix: import
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentame committed Nov 3, 2024
1 parent 3bb574e commit 97427f9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/freebox_api/api/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
"""

import base64
from typing_extensions import Required

import sys

if sys.version_info < (3, 12):
from typing_extensions import Required
else:
from typing import Required
from typing import Any, TypedDict, Union
from typing import Dict
from typing import Optional
Expand Down

0 comments on commit 97427f9

Please sign in to comment.