Nicer event printing

This commit is contained in:
Kovid Goyal 2022-01-19 14:32:03 +05:30
parent acf227803f
commit 9caa6bb306
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -42,7 +42,7 @@ def title(x: str) -> str:
def print_event(ev: AnyEvent, defn: str, print: Print) -> None:
print('\t' + ev.human_repr, defn)
print(f'\t{ev.human_repr}{defn}')
def print_mapping_changes(defns: Dict[AnyEvent, str], changes: Set[AnyEvent], text: str, print: Print) -> None: