(family)
| 1335 | |
| 1336 | @staticmethod |
| 1337 | def _expand_aliases(family): |
| 1338 | if family in ('sans', 'sans serif'): |
| 1339 | family = 'sans-serif' |
| 1340 | return mpl.rcParams['font.' + family] |
| 1341 | |
| 1342 | # Each of the scoring functions below should return a value between |
| 1343 | # 0.0 (perfect match) and 1.0 (terrible match) |
no outgoing calls
no test coverage detected