add private methods that are being used by the built-in convertors

This commit is contained in:
svlandeg 2023-07-06 18:18:19 +02:00
parent 975e9d44f4
commit ef2bd64097

View File

@ -61,3 +61,6 @@ class Example:
def text(self) -> str: ... def text(self) -> str: ...
def __str__(self) -> str: ... def __str__(self) -> str: ...
def __repr__(self) -> str: ... def __repr__(self) -> str: ...
def _parse_example_dict_data(example_dict): ...
def _fix_legacy_dict_data(example_dict): ...