Skip to content

Commit 303e82a

Browse files
fix lint
1 parent 3c1d169 commit 303e82a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/exploratory/pick/radish/steps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ def pick_decorated():
1919

2020
@then("I expect the pick step to be in the world")
2121
def expect_pick_step(step):
22-
assert hasattr(world, "pick_decorated"), f"World is missing the decorated method pick_decorated"
22+
assert hasattr(world, "pick_decorated"), "World is missing the decorated method pick_decorated"
2323

2424

2525
@then("I expect the pick step not to be in the world")
2626
def expect_pick_step_missing(step):
27-
assert not hasattr(world, "pick_decorated"), f"World has the decorated method pick_decorated"
27+
assert not hasattr(world, "pick_decorated"), "World has the decorated method pick_decorated"
2828

2929

3030
@when("I call the pick decorated method")

0 commit comments

Comments
 (0)