Skip to content

Commit 471d6b0

Browse files
committed
style: apply black to tests/core/test_action.py
1 parent 0bde0ea commit 471d6b0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/core/test_action.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -380,9 +380,7 @@ def test_safe_expr_arithmetic_mod_pow():
380380
def test_safe_expr_unary_ops():
381381
assert _eval_value(Condition.safe_expr("-x"), {"x": 3}) == -3
382382
assert _eval_value(Condition.safe_expr("+x"), {"x": 3}) == 3
383-
assert Condition.safe_expr("not flag").run(State({"flag": False})) == {
384-
Condition.KEY: True
385-
}
383+
assert Condition.safe_expr("not flag").run(State({"flag": False})) == {Condition.KEY: True}
386384

387385

388386
def test_safe_expr_negative_literal():

0 commit comments

Comments
 (0)