Merge pull request #1409 from floogulinc/fix-1406
Fix tuple typing in HydrusSVGHandling for old versions of Python
This commit is contained in:
commit
fc8d7d2428
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue