phml.utils.transform

utils.transform

A collection of utilities focused around transforming an ast or a specific nodes.

 1"""utils.transform
 2
 3A collection of utilities focused around transforming an
 4ast or a specific nodes.
 5"""
 6
 7from .sanitize import *
 8from .transform import *
 9
10# __all__ = [
11#     "filter_nodes",
12#     "remove_nodes",
13#     "map_nodes",
14#     "find_and_replace",
15#     "shift_heading",
16# ]