traversal.py 227 B

1234567891011121314
  1. # coding: utf-8
  2. # TODO: move these utils.fns here and move import to utils
  3. # flake8: noqa
  4. from .utils import (
  5. dict_get,
  6. get_first,
  7. require,
  8. subs_list_to_dict,
  9. T,
  10. traverse_obj,
  11. unpack,
  12. value,
  13. )