From b27c66d4d77dbca73978e86645456b1e3eab4bc1 Mon Sep 17 00:00:00 2001 From: singlesp Date: Tue, 21 Jan 2025 12:30:13 -0500 Subject: [PATCH] print output doctests --- cubids/cubids.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cubids/cubids.py b/cubids/cubids.py index 9b2d1991..c40146f7 100644 --- a/cubids/cubids.py +++ b/cubids/cubids.py @@ -2132,11 +2132,11 @@ def get_entity_value(path, key): Examples -------- >>> print(get_entity_value('/path/to/sub-01_ses-02_task-rest_bold.nii.gz', 'sub')) - '01' + 01 >>> print(get_entity_value('/path/to/sub-01_ses-02_task-rest_bold.nii.gz', 'ses')) - '02' + 02 >>> print(get_entity_value('/path/to/sub-01_ses-02_task-rest_bold.nii.gz', 'task')) - 'rest' + rest >>> print(get_entity_value('/path/to/sub-01_ses-02_task-rest_bold.nii.gz', 'run')) None """