diff options
author | fanquake <fanquake@gmail.com> | 2021-05-28 13:31:05 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-06-03 20:45:03 +0800 |
commit | 68ace23fa3bc01baa734ddf2c0963acae1c75ed1 (patch) | |
tree | a71b8441eef6ac739a4e42623098470f79176b38 /test/functional/test_framework | |
parent | 8bfcba36db974326d258c610456bd55cf5818b1e (diff) |
test: convert docs into type annotations in test_framework/test_node.py
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/test_node.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index c17c16f797..ba52abc7dd 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -400,14 +400,14 @@ class TestNode(): self._raise_assertion_error('Expected messages "{}" does not partially match log:\n\n{}\n\n'.format(str(expected_msgs), print_log)) @contextlib.contextmanager - def profile_with_perf(self, profile_name): + def profile_with_perf(self, profile_name: str): """ Context manager that allows easy profiling of node activity using `perf`. See `test/functional/README.md` for details on perf usage. Args: - profile_name (str): This string will be appended to the + profile_name: This string will be appended to the profile data filename generated by perf. """ subp = self._start_perf(profile_name) |