traversal.py 204 B

12345678910111213
  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. T,
  9. traverse_obj,
  10. unpack,
  11. value,
  12. )