Revert "SERVER-76796 Enable more lint warnings and fix them"

This reverts commit 7e0887b55d.
This commit is contained in:
auto-revert-processor
2023-07-13 19:30:15 +00:00
committed by Evergreen Agent
parent ae78f9a136
commit 8837a2dfe2
41 changed files with 93 additions and 79 deletions

View File

@@ -218,7 +218,7 @@ class BackendServer:
if "transitive_edges" in req_body.keys() and req_body["transitive_edges"] is True:
for node in selected_nodes:
for libdep in dependency_graph[str(node)]:
if str(libdep) in nodes:
if str(libdep) in nodes.keys():
add_link_to_graph_data(node, libdep,
dependents_graph[libdep][str(node)])