From d73cbd0f3c82a33b6ead99e6c4ba1bf753d6eded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20manuel=20Barroso=20Galindo?= Date: Wed, 12 Feb 2025 00:24:36 +0100 Subject: [PATCH] Fixed bug. --- src/test/fake_file_system_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/fake_file_system_factory.py b/src/test/fake_file_system_factory.py index bc98298..27e36fb 100644 --- a/src/test/fake_file_system_factory.py +++ b/src/test/fake_file_system_factory.py @@ -169,7 +169,7 @@ def is_folder(self, path): def read_file_contents(self, path): return self.state.files[self._path(path)]['content'] - def precache_is_file_with_folders(self, _folders: list[str], _recheck: bool = False): + def precache_is_file_with_folders(self, _folders: list[str], recheck: bool = False): pass def write_file_contents(self, path, content):