Skip to content

Commit

Permalink
Shut mypy up
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Jan 6, 2025
1 parent 39737c6 commit 0c9659c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/core/fonthandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async def getBackEndInfo(self, *, connection=None) -> dict:
self.projectManager, "getSupportedExportFormats"
):
projectManagerFeatures["export-as"] = (
self.projectManager.getSupportedExportFormats()
self.projectManager.getSupportedExportFormats() # type: ignore[union-attr]
)
return dict(
name=self.backend.__class__.__name__,
Expand Down

0 comments on commit 0c9659c

Please sign in to comment.