Skip to content

Commit fab31a3

Browse files
committed
fixup: fixing lint
Signed-off-by: Simon Schrottner <[email protected]>
1 parent 4448db5 commit fab31a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

providers/openfeature-provider-flagd/tests/e2e/file/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"~sync",
1313
"~caching",
1414
"~grace",
15-
"~contextEnrichment"
15+
"~contextEnrichment",
1616
}
1717

1818

providers/openfeature-provider-flagd/tests/e2e/step/context_steps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,19 @@ def update_context(
3535
"""a context containing a key and value."""
3636
evaluation_context.attributes[key] = type_cast[type_info](value)
3737

38+
3839
@given(
3940
parsers.cfparse(
4041
'a context containing a key "{key}", with type "{type_info}" and with value ""'
4142
),
4243
)
4344
def update_context_without_value(
44-
evaluation_context: EvaluationContext, key: str, type_info: str
45+
evaluation_context: EvaluationContext, key: str, type_info: str
4546
):
4647
"""a context containing a key and value."""
4748
update_context(evaluation_context, key, type_info, "")
4849

4950

50-
5151
@given(
5252
parsers.cfparse(
5353
'a context containing a key "{key}", with type "{type_info}" and with value ""'

0 commit comments

Comments
 (0)