We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68c2a0d commit 99aa6acCopy full SHA for 99aa6ac
1 file changed
src/obofoundry/remove_field.py
@@ -18,8 +18,8 @@ def remove_field(name: str) -> None:
18
19
schema_path = ROOT.joinpath("util", "schema", "registry_schema.json")
20
schema = json.loads(schema_path.read_text())
21
- if name in schema['properties']:
22
- del schema['properties'][name]
+ if name in schema["properties"]:
+ del schema["properties"][name]
23
schema_path.write_text(json.dumps(schema, indent=2) + "\n")
24
25
0 commit comments