diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-02 19:39:28 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-01-02 19:40:13 +0530 |
commit | 8e174ba7dee040d3fb4e14b21b39c3993dd79dd1 (patch) | |
tree | a24e1d1a772ad823671201b1dec2c266d01e8b9d /yt_dlp/utils.py | |
parent | 05997b6e98e638d97d409c65bb5eb86da68f3b64 (diff) | |
download | hypervideo-pre-8e174ba7dee040d3fb4e14b21b39c3993dd79dd1.tar.lz hypervideo-pre-8e174ba7dee040d3fb4e14b21b39c3993dd79dd1.tar.xz hypervideo-pre-8e174ba7dee040d3fb4e14b21b39c3993dd79dd1.zip |
[docs] Improvements
Closes #5846, closes #5774
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index 45a7e6eaa..eeb984cea 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -5438,7 +5438,7 @@ def traverse_obj( The keys in the path can be one of: - `None`: Return the current object. - - `str`/`int`: Return `obj[key]`. For `re.Match, return `obj.group(key)`. + - `str`/`int`: Return `obj[key]`. For `re.Match`, return `obj.group(key)`. - `slice`: Branch out and return all values in `obj[key]`. - `Ellipsis`: Branch out and return a list of all values. - `tuple`/`list`: Branch out and return a list of all matching values. |