refactor: fix some not x in y and not x not in y
This commit is contained in:
@@ -34,7 +34,7 @@ class BOSerGraphQLAPI:
|
||||
for i in d:
|
||||
if i:
|
||||
for k in i:
|
||||
if not k in ret:
|
||||
if k not in ret:
|
||||
ret[k] = i[k]
|
||||
else:
|
||||
ret[k] = merge(ret[k], i[k])
|
||||
|
||||
Reference in New Issue
Block a user