Skip to content

Commit 8a05f33

Browse files
author
Nikhil Patil
committed
is_singular function was missing self argument.
1 parent 7ec0556 commit 8a05f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonpath_rw/jsonpath.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def match_recursively(datum):
340340
for left_match in left_matches
341341
for submatch in match_recursively(left_match)]
342342

343-
def is_singular():
343+
def is_singular(self):
344344
return False
345345

346346
def update(self, data, val):

0 commit comments

Comments
 (0)