Skip to content

Commit 1e7ddf0

Browse files
authored
Fix docstrings (#110)
start and stop were mixed
1 parent cbc5855 commit 1e7ddf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyannotate_runtime/collect_types.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ def pause():
759759
def stop():
760760
# type: () -> None
761761
"""
762-
Start collecting type information.
762+
Stop collecting type information.
763763
"""
764764
global running # pylint: disable=global-statement
765765
running = False
@@ -777,7 +777,7 @@ def resume():
777777
def start():
778778
# type: () -> None
779779
"""
780-
Stop collecting type information.
780+
Start collecting type information.
781781
"""
782782
global running # pylint: disable=global-statement
783783
running = True

0 commit comments

Comments
 (0)