From 320f5e83c98606744bf3a07f571c443e8746950e Mon Sep 17 00:00:00 2001 From: Jonas Hoersch Date: Thu, 12 Feb 2026 23:38:14 +0100 Subject: [PATCH] fix: local path --- src/snakemake_storage_plugin_cached_http/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snakemake_storage_plugin_cached_http/__init__.py b/src/snakemake_storage_plugin_cached_http/__init__.py index 52fec1c..237aebe 100644 --- a/src/snakemake_storage_plugin_cached_http/__init__.py +++ b/src/snakemake_storage_plugin_cached_http/__init__.py @@ -518,7 +518,7 @@ def __post_init__(self): @override def local_suffix(self) -> str: """Return the local suffix for this object (used by parent class).""" - return f"{self.netloc}{self.path}" + return f"{self.netloc}/{self.path}" @override def get_inventory_parent(self) -> str | None: