diff options
author | stickies-v <stickies-v@protonmail.com> | 2023-11-16 19:11:25 +0100 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2023-11-16 19:12:14 +0100 |
commit | a478c817b2f62b7334b36e331a2e37fe8380c754 (patch) | |
tree | b395dea72f4fbee2764ff83e5675b9fd82916494 /test/functional | |
parent | 4b9afb18e6b9e16d7b299820f3a1382986a451d4 (diff) |
test: replace `Callable`/`Iterable` with their `collections.abc` alternative (PEP 585)
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/test_framework/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index 8ee1ef7008..6665ac4c73 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -20,7 +20,8 @@ import time from . import coverage from .authproxy import AuthServiceProxy, JSONRPCException -from typing import Callable, Optional +from collections.abc import Callable +from typing import Optional logger = logging.getLogger("TestFramework.utils") |