Skip to content

Commit

Permalink
fix return type in multipath-by-FOV finder
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Apr 19, 2024
1 parent 791a74f commit d985fc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.4.4] - 2024-04-19

### Fixed
* Fix the return type in signature of `find_multiple_paths_by_fov`.

## [v0.4.3] - 2024-04-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion gertils/pathtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def _invalidate(self) -> None:
)
def find_multiple_paths_by_fov( # noqa: D103
folder: PathLike, *, extensions: Iterable[str]
) -> dict[str, list[Path]]:
) -> dict[FieldOfViewFrom1, list[Path]]:
if isinstance(folder, str):
folder = Path(folder)
paths: dict[str, list[Path]] = {}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gertils"
version = "0.4.3"
version = "0.4.4"
description = "General computing utilities for data processing and analysis in the Gerlich group at IMBA"
authors = [
"Vince Reuter <[email protected]>",
Expand Down

0 comments on commit d985fc6

Please sign in to comment.