Skip to content

Commit

Permalink
ghostscript: fix missing type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Sep 24, 2023
1 parent a3a083c commit f04f455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ocrmypdf/builtin_plugins/ghostscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# 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
Expand Down

0 comments on commit f04f455

Please sign in to comment.