(self)
| 1309 | |
| 1310 | @property |
| 1311 | def defaultFont(self): |
| 1312 | # Lazily evaluated (findfont then caches the result) to avoid including |
| 1313 | # the venv path in the json serialization. |
| 1314 | return {ext: self.findfont(family, fontext=ext) |
| 1315 | for ext, family in self.defaultFamily.items()} |
| 1316 | |
| 1317 | def get_default_weight(self): |
| 1318 | """ |
no test coverage detected