Skip to content

Commit 2c45f76

Browse files
fix: AGENTS.md wrong python method, and simplify data manipulation (#574)
1 parent e78ffe8 commit 2c45f76

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

agent-bases/js.AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ apify help # List all commands
6262

6363
Allowed without prompt:
6464

65-
- read files with `Actor.getValue()`, `Dataset.getData()`
66-
- push data with `Actor.pushData()`, `Dataset.pushData()`
65+
- read files with `Actor.getValue()`
66+
- push data with `Actor.pushData()`
6767
- set values with `Actor.setValue()`
6868
- enqueue requests to RequestQueue
6969
- run locally with `apify run`

agent-bases/python.AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ apify help # List all commands
6161
## Safety and Permissions
6262

6363
Allowed without prompt:
64-
- read files with `Actor.getValue()`, `Dataset.getData()`
65-
- push data with `Actor.pushData()`, `Dataset.pushData()`
66-
- set values with `Actor.setValue()`
64+
- read files with `Actor.get_value()`
65+
- push data with `Actor.push_data()`
66+
- set values with `Actor.set_value()`
6767
- enqueue requests to RequestQueue
6868
- run locally with `apify run`
6969

agent-bases/ts.AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ apify help # List all commands
6262

6363
Allowed without prompt:
6464

65-
- read files with `Actor.getValue()`, `Dataset.getData()`
66-
- push data with `Actor.pushData()`, `Dataset.pushData()`
65+
- read files with `Actor.getValue()`
66+
- push data with `Actor.pushData()`
6767
- set values with `Actor.setValue()`
6868
- enqueue requests to RequestQueue
6969
- run locally with `apify run`

0 commit comments

Comments
 (0)