Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix imports
  • Loading branch information
srittau committed Oct 30, 2025
commit 50b0e486e6819b8ac7f8fd7e7c1eb06bac7bdbd4
4 changes: 2 additions & 2 deletions stubs/fpdf2/fpdf/drawing_primitives.pyi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import decimal
from collections.abc import Callable, Sequence
from typing import Any, ClassVar, Literal, NamedTuple, TypeAlias, TypeVar, overload, type_check_only
from typing_extensions import Self
from typing import Any, ClassVar, Literal, NamedTuple, TypeVar, overload, type_check_only
from typing_extensions import Self, TypeAlias

from .drawing import Renderable

Expand Down
4 changes: 2 additions & 2 deletions stubs/fpdf2/fpdf/pattern.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from _typeshed import Incomplete, Unused
from abc import ABC
from collections.abc import Iterable
from typing import Final, Literal, Never
from typing_extensions import Self, TypeAlias
from typing import Final, Literal
from typing_extensions import Never, Self, TypeAlias

from .drawing import BoundingBox, DeviceCMYK, DeviceGray, DeviceRGB, Transform
from .enums import GradientSpreadMethod
Expand Down