Skip to content

Commit

Permalink
Fix black issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed Aug 31, 2020
1 parent 3b528eb commit 0def140
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deflex/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ def restore_results(file_names):

def search_nodes(results, node_type, **label_filter):
nodes = {
x[0] for x in results["Main"].keys() if isinstance(x[0], node_type)}
x[0] for x in results["Main"].keys() if isinstance(x[0], node_type)
}

for filter_key, filter_value in label_filter.items():
if not isinstance(filter_value, list):
Expand Down

0 comments on commit 0def140

Please sign in to comment.