Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c0a16aa

Browse files
committedMay 14, 2025·
Fixing whitespace for linter
1 parent c651e23 commit c0a16aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/skmatter/decomposition/_pcovc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class PCovC(LinearClassifierMixin, _BasePCov):
6969
n_components : int, float or str, default=None
7070
Number of components to keep.
7171
if n_components is not set all components are kept::
72-
72+
7373
n_components == min(n_samples, n_features)
7474
7575
svd_solver : {'auto', 'full', 'arpack', 'randomized'}, default='auto'

‎src/skmatter/decomposition/_pcovr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class PCovR(RegressorMixin, MultiOutputMixin, _BasePCov):
6161
n_components : int, float or str, default=None
6262
Number of components to keep.
6363
if n_components is not set all components are kept::
64-
64+
6565
n_components == min(n_samples, n_features)
6666
6767
svd_solver : {'auto', 'full', 'arpack', 'randomized'}, default='auto'

0 commit comments

Comments
 (0)
Please sign in to comment.