fix(py39): replace remaining '| None' in diskann graph_partition (module-level function)

This commit is contained in:
Andy Lee
2025-08-07 15:28:29 -07:00
parent 575b354976
commit af69aa0508

View File

@@ -263,8 +263,8 @@ class GraphPartitioner:
def partition_graph(
index_prefix_path: str,
output_dir: str | None = None,
partition_prefix: str | None = None,
output_dir: Optional[str] = None,
partition_prefix: Optional[str] = None,
build_type: str = "release",
**kwargs,
) -> tuple[str, str]: