Skip to content

Commit 0488102

Browse files
committed
MAINT: Fixed E501 Line too long error
When attempting to push changes to GitHub, tests returned a "757:89: E501 Line too long (90 > 88)" error. Line 757 was shortened in this update.
1 parent a0564a4 commit 0488102

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numpy_financial/_financial.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,8 @@ def irr(values, *, raise_exceptions=False, selection_logic=_irr_default_selectio
754754
selection_logic: function, optional
755755
Function for selection logic when more than 1 real solutions is found. User may
756756
insert their own customised function for selection of IRR values.
757-
The function should accept a one-dimensional array of numbers and return a number.
757+
The function should accept a one-dimensional array of numbers
758+
and return a number.
758759
759760
760761
Returns

0 commit comments

Comments
 (0)