aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/traversal.py
blob: 834cfef7fab683b89cc0f3056eb0ba116004c020 (plain)
1
2
3
4
5
6
7
8
9
10
# coding: utf-8

# TODO: move these utils.fns here and move import to utils
# flake8: noqa
from .utils import (
    dict_get,
    get_first,
    T,
    traverse_obj,
)