Skip to content

Commit

Permalink
style: fix black styling
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed Apr 28, 2024
1 parent 85c7182 commit aa67ee1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/functional/test_universal_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
],
)
def test_decode_plan(encoded_plan_commands, encoded_plan_inputs, sdk_plan):
encoded_plan_commands, encoded_plan_inputs = HexBytes(encoded_plan_commands), list(HexBytes(i) for i in encoded_plan_inputs)
encoded_plan_commands, encoded_plan_inputs = HexBytes(encoded_plan_commands), list(
HexBytes(i) for i in encoded_plan_inputs
)
decoded_plan = Plan.decode(encoded_plan_commands, encoded_plan_inputs)

assert decoded_plan == sdk_plan
Expand Down

0 comments on commit aa67ee1

Please sign in to comment.