fix: no implicit optional (#7984)

This commit is contained in:
Dhruv Manilawala
2022-11-15 19:25:14 +05:30
committed by GitHub
parent 316e71b034
commit 3bf86b91e7
6 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ def schur_complement(
mat_a: np.ndarray,
mat_b: np.ndarray,
mat_c: np.ndarray,
pseudo_inv: np.ndarray = None,
pseudo_inv: np.ndarray | None = None,
) -> np.ndarray:
"""
Schur complement of a symmetric matrix X given as a 2x2 block matrix