dialogLaunchers.py 312 B

123456789101112131415
  1. from __future__ import annotations
  2. from dataclasses import dataclass
  3. @dataclass(frozen=True)
  4. class DialogLauncher:
  5. name: str
  6. description: str
  7. DEFAULT_DIALOGS = (
  8. DialogLauncher('summary', 'Launch the Markdown summary view'),
  9. DialogLauncher('parity_audit', 'Launch the parity audit view'),
  10. )