in usort/sorting.py [0:0]
def __init__(self, *, module: cst.Module, path: Path, config: Config):
self.config = config
self.module = module
self.path = path
self.warning_nodes: List[Tuple[cst.CSTNode, str]] = []
self.warnings: List[SortWarning] = []
self.wrapper = cst.MetadataWrapper(module)
self.transformer = ImportSortingTransformer(config, module, self)