Get typing right

This commit is contained in:
Florian Sesser
2025-05-14 13:48:28 +00:00
parent 9e6f75b646
commit f9844f099f

View File

@ -319,7 +319,7 @@ def chutney(reactor, temp_dir: str) -> FilePath:
pytest.skip(f"Some command-line tools not found: {missing}")
# The directory with all of the network definitions.
return FilePath(chutney.__file__).parent().child("data").path
return FilePath(chutney.__file__).parent().child("data")
@frozen
@ -362,7 +362,7 @@ def tor_network(reactor, temp_dir, chutney, request):
:return: None
"""
chutney_root = chutney
chutney_root = chutney.path
basic_network = join(chutney_root, 'networks', 'basic-min')
env = environ.copy()