Skip to content

Commit

Permalink
Minor edits for docs style
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Apr 30, 2022
1 parent 9bd0214 commit 61779ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scico/numpy/blockarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@


class BlockArray(list):
"""BlockArray class"""
"""BlockArray class."""

# Ensure we use BlockArray.__radd__, __rmul__, etc for binary
# operations of the form op(np.ndarray, BlockArray) See
Expand All @@ -233,7 +233,7 @@ def __init__(self, inputs):
def dtype(self):
"""Return the dtype of the blocks, which must currently be homogeneous.
This allows snp.zeros(x.shape, x.dtype) to work without a mechanism
This allows `snp.zeros(x.shape, x.dtype)` to work without a mechanism
to handle to lists of dtypes.
"""
return self[0].dtype
Expand Down

0 comments on commit 61779ff

Please sign in to comment.