Fix tuple typing in HydrusSVGHandling for old versions of Python

This commit is contained in:
Paul Friederichsen 2023-07-22 15:52:32 -05:00
parent dfde69b5f2
commit 6719997d8a
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
import typing
from qtpy import QtSvg
from qtpy import QtGui as QG
from qtpy import QtCore as QC
@ -24,7 +25,7 @@ def LoadSVGRenderer(path: str):
return renderer
def GenerateThumbnailBytesFromSVGPath(path: str, target_resolution: tuple[int, int], clip_rect = None) -> bytes:
def GenerateThumbnailBytesFromSVGPath(path: str, target_resolution: typing.Tuple[int, int], clip_rect = None) -> bytes:
# TODO handle clipping