Skip to content

Commit 50b0e48

Browse files
committed
Fix imports
1 parent f1795fe commit 50b0e48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

stubs/fpdf2/fpdf/drawing_primitives.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import decimal
22
from collections.abc import Callable, Sequence
3-
from typing import Any, ClassVar, Literal, NamedTuple, TypeAlias, TypeVar, overload, type_check_only
4-
from typing_extensions import Self
3+
from typing import Any, ClassVar, Literal, NamedTuple, TypeVar, overload, type_check_only
4+
from typing_extensions import Self, TypeAlias
55

66
from .drawing import Renderable
77

stubs/fpdf2/fpdf/pattern.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from _typeshed import Incomplete, Unused
22
from abc import ABC
33
from collections.abc import Iterable
4-
from typing import Final, Literal, Never
5-
from typing_extensions import Self, TypeAlias
4+
from typing import Final, Literal
5+
from typing_extensions import Never, Self, TypeAlias
66

77
from .drawing import BoundingBox, DeviceCMYK, DeviceGray, DeviceRGB, Transform
88
from .enums import GradientSpreadMethod

0 commit comments

Comments
 (0)