Skip to content

Commit

Permalink
Reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
petertdavies committed Sep 6, 2024
1 parent 7e0cc95 commit 1c23c59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pytest_plugins/forks/forks.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,9 @@ def get_fork_option(config, option_name: str, parameter_name: str) -> Set[Fork]:

evm_bin = config.getoption("evm_bin")
t8n = TransitionTool.from_binary_path(binary_path=evm_bin)
config.unsupported_forks = frozenset(filter( # type: ignore
lambda fork: not t8n.is_fork_supported(fork), fork_set
))
config.unsupported_forks = frozenset(
filter(lambda fork: not t8n.is_fork_supported(fork), fork_set) # type: ignore
)


@pytest.hookimpl(trylast=True)
Expand Down

0 comments on commit 1c23c59

Please sign in to comment.