We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 965c4bd commit 0171245Copy full SHA for 0171245
src/napari_micromanager/_util.py
@@ -66,5 +66,5 @@ def ensure_unique(path: Path, extension: str = ".tif", ndigits: int = 3) -> Path
66
continue
67
68
# build new path name
69
- number = f"_{current_max+1:0{ndigits}d}"
+ number = f"_{current_max + 1:0{ndigits}d}"
70
return path.parent / f"{stem}{number}{extension}"
0 commit comments