Load a `FontManager` from the JSON file named *filename*. See Also -------- json_dump
(filename)
| 1181 | |
| 1182 | |
| 1183 | def json_load(filename): |
| 1184 | """ |
| 1185 | Load a `FontManager` from the JSON file named *filename*. |
| 1186 | |
| 1187 | See Also |
| 1188 | -------- |
| 1189 | json_dump |
| 1190 | """ |
| 1191 | with open(filename) as fh: |
| 1192 | return json.load(fh, object_hook=_json_decode) |
| 1193 | |
| 1194 | |
| 1195 | class FontManager: |
no outgoing calls
searching dependent graphs…