phml.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 .extract import * 8from .sanitize import * 9from .transform import * 10 11# __all__ = [ 12# "filter_nodes", 13# "remove_nodes", 14# "map_nodes", 15# "find_and_replace", 16# "shift_heading", 17# ]