synt.code ¤ IntoCode ¤ Source code in synt/code.py 13 14 15 16class IntoCode(metaclass=ABCMeta): @abstractmethod def into_code(self) -> str: """Converts the object into a string of Python code.""" into_code abstractmethod ¤ 1into_code() -> str Converts the object into a string of Python code. Source code in synt/code.py 14 15 16@abstractmethod def into_code(self) -> str: """Converts the object into a string of Python code."""