From 63aa1b1e7724b4c505dbc977ecc11bca92480ea4 Mon Sep 17 00:00:00 2001 From: Eugenia Mazur Date: Mon, 15 Apr 2024 20:04:57 +1000 Subject: [PATCH] MAINT: Fixed "Line too long" error WHen attemping to commit a change, a "Line too long" error occured. Line 757 has been shortened. --- numpy_financial/_financial.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/numpy_financial/_financial.py b/numpy_financial/_financial.py index 01894c3..76da2a6 100644 --- a/numpy_financial/_financial.py +++ b/numpy_financial/_financial.py @@ -752,10 +752,10 @@ def irr(values, *, raise_exceptions=False, selection_logic=_irr_default_selectio Set to False as default, thus returning NaNs in the two previous cases. selection_logic: function, optional - Function for selection logic when more than 1 real solutions is found. User may - insert their own customised function for selection of IRR values. - The function should accept a one-dimensional array of numbers - and return a number. + Function for selection logic when more than 1 real solutions is found. + User may insert their own customised function for selection + of IRR values.The function should accept a one-dimensional array + of numbers and return a number. Returns