diff --git a/src/autocompletion/skulpt-api.json b/src/autocompletion/skulpt-api.json index e43189c8..e870913f 100644 --- a/src/autocompletion/skulpt-api.json +++ b/src/autocompletion/skulpt-api.json @@ -1547,7 +1547,7 @@ }, { "name": "verbosity", - "defaultValue": "" + "defaultValue": "" }, { "name": "failfast", @@ -1673,7 +1673,7 @@ }, { "name": "data", - "defaultValue": "" + "defaultValue": "" }, { "name": "timeout", @@ -2280,7 +2280,7 @@ }, { "name": "deepcopy", - "defaultValue": "" + "defaultValue": "" } ] }, @@ -2322,7 +2322,7 @@ }, { "name": "deepcopy", - "defaultValue": "" + "defaultValue": "" } ] }, @@ -2350,7 +2350,7 @@ }, { "name": "deepcopy", - "defaultValue": "" + "defaultValue": "" } ] }, @@ -2392,7 +2392,7 @@ }, { "name": "state", - "defaultValue": "" + "defaultValue": "" }, { "name": "listiter", @@ -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" ],