This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

9 строки
188 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, ...]