This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

15 wiersze
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