Skip to content

Commit 1d47cb6

Browse files
authored
docs: Add missing unpacking operator in Permission objects docs (feast-dev#4884)
docs: add missing unpacking operator in Permission objects docs Signed-off-by: boliri <[email protected]>
1 parent e983882 commit 1d47cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/getting-started/concepts/permission.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Permission(
6969
name="feature-reader",
7070
types=[FeatureView, FeatureService],
7171
policy=RoleBasedPolicy(roles=["super-reader"]),
72-
actions=[AuthzedAction.DESCRIBE, READ],
72+
actions=[AuthzedAction.DESCRIBE, *READ],
7373
)
7474
```
7575

0 commit comments

Comments
 (0)