lib.FileContext.put(): Swap params path and content

Swap the positions of the "path" and "content" parameters of put().
Path comes always first, in every path related function I know.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-04-17 14:18:06 +02:00
commit 64e9fbff59
2 changed files with 4 additions and 4 deletions

View file

@ -283,8 +283,8 @@ class ExecContext(Base):
async def _put(
self,
content: bytes,
path: str,
content: bytes,
wd: str|None,
throw: bool,
verbose: bool|None,