diff options
author | Kat Harrison <Kat Harrison> | 2013-06-23 12:43:16 -0400 |
---|---|---|
committer | Kat Harrison <Kat Harrison> | 2013-06-23 12:43:16 -0400 |
commit | 5efb29460e7efa651c17383bf0767a22bc9b066a (patch) | |
tree | a66661acc2b0a0f2d43b8cab3e4c283cba065e77 /vba_autoplayer.py | |
parent | ea9a775bab92166485efb551cc5bbd20324dec1e (diff) |
Edit some docstrings in /extras.
original-commit-id: 1120eaaaf54afe16600c7b5f665edcbc621fde0f
Diffstat (limited to 'vba_autoplayer.py')
-rw-r--r-- | vba_autoplayer.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/vba_autoplayer.py b/vba_autoplayer.py index eafbff1..349fc20 100644 --- a/vba_autoplayer.py +++ b/vba_autoplayer.py @@ -26,8 +26,10 @@ def main(): def skippable(func): """ - Makes a function skippable by saving the state before and after the - function runs. Pass "skip=True" to the function to load the previous save + Makes a function skippable. + + Saves the state before and after the function runs. + Pass "skip=True" to the function to load the previous save state from when the function finished. """ def wrapped_function(*args, **kwargs): @@ -433,6 +435,8 @@ def handle_elm(starter_choice): @skippable def new_bark_level_grind(level): """ + Do level grinding in New Bark. + Starting just outside of Elm's Lab, do some level grinding until the first partymon level is equal to the given value.. """ |