Skip to content

Commit c6b172b

Browse files
committed
formatting
1 parent 2156fed commit c6b172b

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

flag_engine/segments/evaluator.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,19 @@ def inner(
223223

224224

225225
CONTEXT_VALUE_GETTERS_BY_PROPERTY = {
226-
"$.identity.identifier": partial(reduce, dict.__getitem__, ["identity", "identifier"]),
227-
"$.identity.key": partial(reduce, dict.__getitem__, ["identity", "key"]),
228-
"$.environment.name": partial(reduce, dict.__getitem__, ["environment", "name"]),
226+
"$.identity.identifier": partial(
227+
reduce,
228+
dict.__getitem__,
229+
["identity", "identifier"],
230+
),
231+
"$.identity.key": partial(
232+
reduce,
233+
dict.__getitem__,
234+
["identity", "key"],
235+
),
236+
"$.environment.name": partial(
237+
reduce,
238+
dict.__getitem__,
239+
["environment", "name"],
240+
),
229241
}

0 commit comments

Comments
 (0)