Skip to content

Commit 996adfb

Browse files
committed
Fix line too long error
1 parent 6e8af4c commit 996adfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy_financial/_financial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1068,8 +1068,8 @@ def mirr(values, finance_rate, reinvest_rate, *, raise_exceptions=False):
10681068
... ) #doctest: +NORMALIZE_WHITESPACE
10691069
Traceback (most recent call last):
10701070
...
1071-
numpy_financial._financial.NoRealSolutionError: No real solution exists for MIRR since
1072-
all cashflows are of the same sign.
1071+
numpy_financial._financial.NoRealSolutionError:
1072+
No real solution exists for MIRR since all cashflows are of the same sign.
10731073
"""
10741074
values = np.asarray(values)
10751075
n = values.size

0 commit comments

Comments
 (0)