Skip to content

Commit 1ab58b5

Browse files
committed
Convert unecessary f-string to literal.
1 parent 29e6301 commit 1ab58b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snakemake/persistence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ def save_iocache(self):
748748
def load_iocache(self):
749749
filepath = self._iocache_filename
750750
if os.path.exists(filepath):
751-
logger.info(f"Loading trusted IOCache from latest dry-run.")
751+
logger.info("Loading trusted IOCache from latest dry-run.")
752752
with open(filepath, "rb") as handle:
753753
self.dag.workflow.iocache = IOCache.load(handle)
754754

0 commit comments

Comments
 (0)