Remove deprecated symbol/dbPointer types from json schema.
(json_schema)
| 884 | |
| 885 | @staticmethod |
| 886 | def fix_up_schema(json_schema): |
| 887 | """Remove deprecated symbol/dbPointer types from json schema.""" |
| 888 | for key in list(json_schema["properties"]): |
| 889 | if "_symbol_" in key or "_dbPointer_" in key: |
| 890 | del json_schema["properties"][key] |
| 891 | return json_schema |
| 892 | |
| 893 | @staticmethod |
| 894 | def fix_up_curpus(corpus): |
no outgoing calls
no test coverage detected