Skip to content

Commit 2fe5e5a

Browse files
committed
🔥
1 parent 655c6ff commit 2fe5e5a

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

‎docs/conf.py‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,11 @@ async def download_missing_schemas(versions: Iterable[Version], gh_token: str |
387387
update_references_all_schemas(current_json_schemas)
388388
schemas = [current_json_schemas, *asyncio.run(download_missing_schemas(last_versions, gh_token))]
389389
changes = [diff_schemas(schemas_1, schemas_2) for schemas_1, schemas_2 in pairwise(reversed(schemas))]
390-
for changes_obj in changes:
391-
write_changes(changes_obj, changes_base_dir / f"{changes_obj.old_version}_to_{changes_obj.new_version}.json")
390+
391+
# Comment this out if you want to write the changes to files. Helpful for debugging.
392+
# for changes_obj in changes:
393+
# write_changes(changes_obj, changes_base_dir / f"{changes_obj.old_version}_to_{changes_obj.new_version}.json")
394+
392395
graph = create_graph_from_changes(iter(changes))
393396
graph_path = get_path_through_di_path_graph(graph)
394397
compatibility_matrix = create_compatibility_matrix(graph, graph_path, use_emotes=True)

0 commit comments

Comments
 (0)