Skip to content

Commit d8f9546

Browse files
Kai-StriegaWarrenWeckesser
authored andcommitted
STY: Insert missing space after ':'
1 parent e3b5e4c commit d8f9546

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

numpy_financial/_financial.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
__all__ = ['fv', 'pmt', 'nper', 'ipmt', 'ppmt', 'pv', 'rate',
2727
'irr', 'npv', 'mirr']
2828

29-
_when_to_num = {'end':0, 'begin':1,
30-
'e':0, 'b':1,
31-
0:0, 1:1,
32-
'beginning':1,
33-
'start':1,
34-
'finish':0}
29+
_when_to_num = {'end': 0, 'begin': 1,
30+
'e': 0, 'b': 1,
31+
0: 0, 1: 1,
32+
'beginning': 1,
33+
'start': 1,
34+
'finish': 0}
3535

3636
def _convert_when(when):
3737
#Test to see if when has already been converted to ndarray

0 commit comments

Comments
 (0)