Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
JensHeinrich authored and JensHeinrich committed Feb 16, 2023
1 parent 38ee9d3 commit 288860a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hypothesis-python/src/hypothesis/extra/ghostwriter.py
Expand Up @@ -603,7 +603,8 @@ def _imports_for_strategy(strategy):
):
return {
imp
for arg in set(strategy._LazyStrategy__args) | set(strategy._LazyStrategy__kwargs.values())
for arg in set(strategy._LazyStrategy__args)
| set(strategy._LazyStrategy__kwargs.values())
for imp in _imports_for_object(arg)
}
elif _get_module(strategy.function).startswith("hypothesis.extra."):
Expand Down

0 comments on commit 288860a

Please sign in to comment.