Skip to content

Commit 485d2ec

Browse files
Kai-StriegaWarrenWeckesser
authored andcommitted
STY: Begin block comments with '# '
1 parent 0d675ae commit 485d2ec

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

doc/source/conf.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# add these directories to sys.path here. If the directory is relative to the
1414
# documentation root, use os.path.abspath to make it absolute, like shown here.
1515
#
16-
#import os
17-
#import sys
18-
#sys.path.insert(0, os.path.abspath('.'))
16+
# import os
17+
# import sys
18+
# sys.path.insert(0, os.path.abspath('.'))
1919

2020

2121
# -- Project information -----------------------------------------------------
@@ -51,11 +51,11 @@
5151
# The theme to use for HTML and HTML Help pages. See the documentation for
5252
# a list of builtin themes.
5353
#
54-
#html_theme = 'alabaster'
55-
#html_theme = 'pyramid'
56-
#html_theme = 'nature'
54+
# html_theme = 'alabaster'
55+
# html_theme = 'pyramid'
56+
# html_theme = 'nature'
5757
html_theme = 'bizstyle'
58-
#html_theme = 'classic'
58+
# html_theme = 'classic'
5959
html_copy_source = False
6060

6161
# Add any paths that contain custom static files (such as style sheets) here,

numpy_financial/_financial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
'finish': 0}
3535

3636
def _convert_when(when):
37-
#Test to see if when has already been converted to ndarray
38-
#This will happen if one function calls another, for example ppmt
37+
# Test to see if when has already been converted to ndarray
38+
# This will happen if one function calls another, for example ppmt
3939
if isinstance(when, np.ndarray):
4040
return when
4141
try:

0 commit comments

Comments
 (0)