From d27e18fb4700a1f13202ffac24c74dfffb7d9bd4 Mon Sep 17 00:00:00 2001 From: David Beal Date: Tue, 14 Apr 2026 18:42:07 +0200 Subject: [PATCH] FIX fs_storage: typo in options --- fs_storage/models/fs_storage.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/fs_storage/models/fs_storage.py b/fs_storage/models/fs_storage.py index 79c5109928..58ae2c6180 100644 --- a/fs_storage/models/fs_storage.py +++ b/fs_storage/models/fs_storage.py @@ -127,11 +127,9 @@ def __init__(self, env, ids=(), prefetch_ids=()): "For example, for the sftp protocol, you can provide the following:\n" "{\n" " 'host': 'my.sftp.server',\n" - " 'ssh_kwrags': {\n" - " 'username': 'myuser',\n" - " 'password': 'mypassword',\n" - " 'port': 22,\n" - " }\n" + " 'username': 'myuser',\n" + " 'password': 'mypassword',\n" + " 'port': 22\n" "}\n" "For more information, please refer to the fsspec documentation:\n" "https://filesystem-spec.readthedocs.io/en/latest/api.html#built-in-implementations"