refactor: fix some not x in y and not x not in y

This commit is contained in:
UpstreamData
2024-01-16 08:36:31 -07:00
parent 5327b3fe3d
commit 468134e754
8 changed files with 21 additions and 15 deletions

View File

@@ -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])