This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

15 行
237 B

  1. from typing import Optional, Tuple
  2. class RuleOptions:
  3. keep_all_tokens: bool
  4. expand1: bool
  5. priority: int
  6. template_source: Optional[str]
  7. empty_indices: Tuple[bool, ...]
  8. class Symbol:
  9. name: str
  10. is_term: bool