Skip to content

Commit

Permalink
Updated the cached docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilccbrown committed Dec 13, 2024
1 parent 829be21 commit a0ee4bf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/autocompletion/skulpt-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1547,7 +1547,7 @@
},
{
"name": "verbosity",
"defaultValue": "<unittest.loader.TestLoader object at 0x10357ea90>"
"defaultValue": "<unittest.loader.TestLoader object at 0x103bf1a90>"
},
{
"name": "failfast",
Expand Down Expand Up @@ -1673,7 +1673,7 @@
},
{
"name": "data",
"defaultValue": "<object object at 0x1030011c0>"
"defaultValue": "<object object at 0x102e791c0>"
},
{
"name": "timeout",
Expand Down Expand Up @@ -2280,7 +2280,7 @@
},
{
"name": "deepcopy",
"defaultValue": "<function deepcopy at 0x1038a5af0>"
"defaultValue": "<function deepcopy at 0x103f19af0>"
}
]
},
Expand Down Expand Up @@ -2322,7 +2322,7 @@
},
{
"name": "deepcopy",
"defaultValue": "<function deepcopy at 0x1038a5af0>"
"defaultValue": "<function deepcopy at 0x103f19af0>"
}
]
},
Expand Down Expand Up @@ -2350,7 +2350,7 @@
},
{
"name": "deepcopy",
"defaultValue": "<function deepcopy at 0x1038a5af0>"
"defaultValue": "<function deepcopy at 0x103f19af0>"
}
]
},
Expand Down Expand Up @@ -2392,7 +2392,7 @@
},
{
"name": "state",
"defaultValue": "<function deepcopy at 0x1038a5af0>"
"defaultValue": "<function deepcopy at 0x103f19af0>"
},
{
"name": "listiter",
Expand Down Expand Up @@ -14243,7 +14243,7 @@
},
{
"acResult": "pause",
"documentation": "\n Waits for a suitable amount of time since the last call to pause() to allow you to take\n the given number of actions per second. This is almost always used like follows:\n \n ```\n while True:\n # Do all the actions you want to do in one go\n pause(30)\n ```\n \n Where 30 is the number of times you want to do those actions per second. It is like sleeping\n for 1/30th of a second, but it accounts for the fact that your actions may have taken some time,\n so it aims to keep you executing the actions 30 times per second (or whatever value you pass\n for actions_per_second).\n ",
"documentation": "\n Waits for a suitable amount of time since the last call to pause(). This is almost always used as follows:\n \n ```\n while True:\n # Do all the actions you want to do in one go\n pause(30)\n ```\n \n Where 30 is the number of times you want to do those actions per second. It is like sleeping\n for 1/30th of a second, but it accounts for the fact that your actions may have taken some time,\n so it aims to keep you executing the actions 30 times per second (or whatever value you pass\n for actions_per_second).\n \n :param actions_per_second: The amount of times you want to call pause() per second, 25 by default.\n ",
"type": [
"function"
],
Expand Down

0 comments on commit a0ee4bf

Please sign in to comment.