Skip to content

Commit

Permalink
Fix shape in typing information
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceyron committed Apr 10, 2024
1 parent d890bce commit 21db076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exponax/_base_stepper.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def __init__(
def _build_linear_operator(
self,
derivative_operator: Complex[Array, "D ... (N//2)+1"],
) -> Complex[Array, "D ... (N//2)+1"]:
) -> Complex[Array, "C ... (N//2)+1"]:
"""
Assemble the L operator in Fourier space.
Expand All @@ -169,7 +169,7 @@ def _build_linear_operator(
N//2+1).
**Returns:**
- `L`: The linear operator, shape `( D, ..., N//2+1 )`.
- `L`: The linear operator, shape `( C, ..., N//2+1 )`.
"""
pass

Expand Down

0 comments on commit 21db076

Please sign in to comment.