Remove redundant aliases mmcif.tokenize and mmcif.split_line

PiperOrigin-RevId: 768055969
Change-Id: I7c6b4b47e9ccae15e0ffc220cfb15fa69457181b
This commit is contained in:
Augustin Zidek
2025-06-06 06:51:22 -07:00
committed by Copybara-Service
parent 344735c371
commit bc73f5652b

View File

@ -115,14 +115,6 @@ def parse_multi_data_cif(cif_string: str) -> dict[str, Mmcif]:
return cif_dict.parse_multi_data_cif(cif_string)
def tokenize(mmcif_string: str) -> list[str]:
return cif_dict.tokenize(mmcif_string)
def split_line(line: str) -> list[str]:
return cif_dict.split_line(line)
class BondParsingError(Exception):
"""Exception raised by errors when getting bond atom indices."""