Skip to content

Commit b01fd31

Browse files
mdeffnperraud
authored andcommitted
python 2.7 doesn't support keyword-only args
1 parent 7b48f81 commit b01fd31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pygsp/graphs/nngraphs/nngraph.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class NNGraph(Graph):
288288
289289
"""
290290

291-
def __init__(self, features, *, center=True, rescale=True,
291+
def __init__(self, features, center=True, rescale=True,
292292
metric='euclidean', order=0,
293293
kind='knn', k=10, radius=0.01,
294294
kernel_width=None,

0 commit comments

Comments
 (0)