ghostscript: fix missing type annotation

This commit is contained in:
James R. Barlow
2023-09-24 01:19:56 -07:00
parent a3a083c125
commit f04f45545c
+1 -1
View File
@@ -15,7 +15,7 @@ log = logging.getLogger(__name__)
# Currently all blacklisted versions are lower than 9.55, so none need to
# be added here. If a future version is blacklisted, add it here.
BLACKLISTED_GS_VERSIONS = frozenset()
BLACKLISTED_GS_VERSIONS: frozenset[str] = frozenset()
@hookimpl