Skip to content

Commit 4de14b6

Browse files
committed
For Python 3.9 use TypedDict from typing_extensions
1 parent 268d493 commit 4de14b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

procrastinate/tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import datetime
44
import inspect
55
import logging
6-
from typing import Callable, Generic, TypedDict, cast
6+
from typing import Callable, Generic, cast
77

8-
from typing_extensions import NotRequired, ParamSpec, TypeVar, Unpack
8+
from typing_extensions import NotRequired, ParamSpec, TypedDict, TypeVar, Unpack
99

1010
from procrastinate import app as app_module
1111
from procrastinate import blueprints, exceptions, jobs, manager, types, utils

0 commit comments

Comments
 (0)