Skip to content

Commit

Permalink
ooops lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestoarbitrio committed Jul 3, 2024
1 parent 2a63c29 commit f87b128
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cr/cube/cube.py
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ def missing_count(self) -> int:
# fixtures that don't have valid_counts.
if self.means is not None:
return self.means.missing_count
# The check on the medians measure is needed for retro-compatibility with the old
# The check on the median measure is needed for retro-compatibility with the old
# fixtures that don't have valid_counts.
if self.medians is not None:
return self.medians.missing_count
Expand Down
3 changes: 2 additions & 1 deletion src/cr/cube/cubepart.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,8 @@ def medians(self):
"""2D optional np.float64 ndarray of median values for each table cell.
Cell value is `np.nan` for each cell corresponding to an inserted subtotal
(medians of addend cells cannot simply be added to get the mean of the subtotal).
(medians of addend cells cannot simply be added to get the mean of the
subtotal).
Raises `ValueError` if the cube-result does not include a median cube-measure.
"""
Expand Down

0 comments on commit f87b128

Please sign in to comment.