From 980cd299d6a9ec0342c5eaf2c86c1b54e41a9f59 Mon Sep 17 00:00:00 2001 From: bauen1 Date: Thu, 17 Oct 2024 14:55:28 +0200 Subject: [PATCH] docs: no global argument passing for yield from _inner in operations --- docs/api/operations.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/api/operations.md b/docs/api/operations.md index 9387f6991..b6f0dc542 100644 --- a/docs/api/operations.md +++ b/docs/api/operations.md @@ -43,6 +43,9 @@ Operations can also call other operations using ``yield from`` syntax: yield from files.file._inner( path="/some/file", ..., + + # Only arguments for the operation itself are allowed, global arguments + # such as e.g. _sudo are not accepted. ) ```