Skip to content

Commit 1e4142c

Browse files
committed
Fixing quotes
1 parent 5f300f7 commit 1e4142c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

schema/v4/check_refs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def find_missing_refs_in_dir(schema_dir: str | Path) -> List[Dict[str, str]]:
8888
if problems:
8989
print("\nMissing/unresolvable $refs:")
9090
for p in problems:
91-
print(f"- In {p['schema'].split("/")[-1]}:\n at {p['where']}: {p['ref']} (→ {p['resolved_target']})\n")
91+
print(f"- In {p['schema'].split('/')[-1]}:\n at {p['where']}: {p['ref']} (→ {p['resolved_target']})\n")
9292
raise SystemExit(2)
9393
else:
9494
print("All $refs resolved.")

0 commit comments

Comments
 (0)