diff --git a/pyannotate_runtime/collect_types.py b/pyannotate_runtime/collect_types.py index 85cf601..f9d544f 100644 --- a/pyannotate_runtime/collect_types.py +++ b/pyannotate_runtime/collect_types.py @@ -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 @@ -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