Fixing bad type def

This commit is contained in:
Hydrus Network Developer 2024-11-20 16:48:56 -06:00
parent 5e68f9998f
commit 575ef0c428
No known key found for this signature in database
GPG Key ID: 76249F053212133C
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ from hydrus.client import ClientConstants as CC
from hydrus.client import ClientGlobals as CG from hydrus.client import ClientGlobals as CG
from hydrus.client import ClientThreading from hydrus.client import ClientThreading
from hydrus.client.media import ClientMedia from hydrus.client.media import ClientMedia
from hydrus.client.media import ClientMediaResult
from hydrus.client.metadata import ClientTags from hydrus.client.metadata import ClientTags
FILE_FILTER_ALL = 0 FILE_FILTER_ALL = 0
@ -484,7 +485,7 @@ def FilterAndReportDeleteLockFailures( medias: typing.Collection[ ClientMedia.Me
return deletee_medias return deletee_medias
def ReportDeleteLockFailures( media_results: typing.Collection[ ClientMedia.ClientMediaResult ] ): def ReportDeleteLockFailures( media_results: typing.Collection[ ClientMediaResult.MediaResult ] ):
HydrusData.Print( 'Hey, we had a delete-lock problem. Here is the stack, which hydev may care to see:' ) HydrusData.Print( 'Hey, we had a delete-lock problem. Here is the stack, which hydev may care to see:' )