@classmethod
def expand_path(cls, file_path: str, cwd: str = None) -> List[str]:
Expands path with globs and colons into a list of absolute paths
cwd = cwd or os.getcwd()
pathComponents = [PathComponents(path) for path in splitPath(file_path)]
expanded_paths = []
missing_files = []
for components in pathComponents:
After Change
@classmethod
def expand_path(cls, file_path: str, cwd: str = None) -> List[str]:
Expands path with globs and colons into a list of absolute paths
cwd = Path(cwd) if cwd else Path.cwd()
pathComponents = [PathComponents(path) for path in splitPath(file_path)]
expanded_paths = []
missing_files = []
for components in pathComponents: