Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyannotate_runtime/collect_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ def pause():
def stop():
# type: () -> None
"""
Start collecting type information.
Stop collecting type information.
"""
global running # pylint: disable=global-statement
running = False
Expand All @@ -777,7 +777,7 @@ def resume():
def start():
# type: () -> None
"""
Stop collecting type information.
Start collecting type information.
"""
global running # pylint: disable=global-statement
running = True
Expand Down