Skip to content

Commit 9b5d8c0

Browse files
committed
python 2.7 doesn't support keyword-only args
1 parent 8a51649 commit 9b5d8c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygsp/graphs/nngraphs/nngraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ class NNGraph(Graph):
284284
285285
"""
286286

287-
def __init__(self, features, *, center=True, rescale=True,
287+
def __init__(self, features, center=True, rescale=True,
288288
metric='euclidean', order=0,
289289
kind='knn', k=10, radius=0.01,
290290
kernel_width=None,

0 commit comments

Comments
 (0)