From 9852f6bc22c207b39f4d8c43e7c62734ee6a8c07 Mon Sep 17 00:00:00 2001 From: Ben Rutter Date: Thu, 1 May 2025 16:34:26 +0100 Subject: [PATCH 1/2] cachable set to false --- sshfs/spec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sshfs/spec.py b/sshfs/spec.py index 046a6ec..1995b52 100644 --- a/sshfs/spec.py +++ b/sshfs/spec.py @@ -63,6 +63,7 @@ def __init__( _client_args.setdefault("known_hosts", None) self._stack = AsyncExitStack() + self.cachable = False self.active_executors = 0 self._client, self._pool = self.connect( host, From b81b9891f988dc2fdc1d7da03b8f1ea2febc582f Mon Sep 17 00:00:00 2001 From: Ben Rutter Date: Thu, 1 May 2025 17:03:11 +0100 Subject: [PATCH 2/2] adding cachable to ignore words list --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0291543..e90fd0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,3 +14,6 @@ force_grid_wrap=0 include_trailing_comma=true multi_line_output=3 use_parentheses=true + +[tool.codespell] +ignore-words-list=cachable