8000 is_singular function was missing self argument adding self argument (… · s886508/python-jsonpath-rw@f615451 · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit f615451

Browse files
nick9999kennknowles
authored andcommitted
is_singular function was missing self argument adding self argument (kennknowles#52)
1 parent 73dfccd commit f615451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonpath_rw/jsonpath.py

Lines changed: 1 addition & 1 deletion
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):< 3766 /div>

0 commit comments

Comments
 (0)
0