Return list of file extensions this parser handles
(self)
| 40 | |
| 41 | @abstractmethod |
| 42 | def get_file_extensions(self) -> List[str]: |
| 43 | """Return list of file extensions this parser handles""" |
| 44 | pass |
| 45 | |
| 46 | @abstractmethod |
| 47 | def parse(self, code_content: str) -> List[ImportInfo]: |