Skip to content

Commit 0c852d3

Browse files
committed
Linting
1 parent c8ebb29 commit 0c852d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

causal_testing/surrogate/surrogate_search_algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def create_gene_types(
105105
for relationship in list(specification.scenario.constraints):
106106
rel_split = str(relationship).split(" ")
107107

108-
if rel_split[0] in var_space.keys():
108+
if rel_split[0] in var_space:
109109
if rel_split[1] == ">=":
110110
var_space[rel_split[0]]["low"] = int(rel_split[2])
111111
elif rel_split[1] == "<=":

0 commit comments

Comments
 (0)