Skip to content

Commit 99aa6ac

Browse files
committed
Format code
1 parent 68c2a0d commit 99aa6ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/obofoundry/remove_field.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ def remove_field(name: str) -> None:
1818

1919
schema_path = ROOT.joinpath("util", "schema", "registry_schema.json")
2020
schema = json.loads(schema_path.read_text())
21-
if name in schema['properties']:
22-
del schema['properties'][name]
21+
if name in schema["properties"]:
22+
del schema["properties"][name]
2323
schema_path.write_text(json.dumps(schema, indent=2) + "\n")
2424

2525

0 commit comments

Comments
 (0)