Spaces:
Sleeping
Sleeping
File size: 297 Bytes
463f868 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # -*- coding: utf-8 -*-
from typing import List
from engine.models.ability import Ability
def parse_ability_text(text: str) -> List[Ability]:
from .parser_v2 import AbilityParserV2
parser = AbilityParserV2()
return parser.parse(text)
__all__ = ["parse_ability_text"] |