Closed guiwitz closed 3 years ago
Merging #75 (a2d9465) into main (14ad2c1) will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## main #75 +/- ##
=======================================
Coverage 67.06% 67.06%
=======================================
Files 17 17
Lines 841 841
=======================================
Hits 564 564
Misses 277 277
Impacted Files | Coverage Δ | |
---|---|---|
napari_animation/animation.py | 79.54% <ø> (ø) |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 14ad2c1...a2d9465. Read the comment docs.
Two types of
imageio
writers are used depending on the chosen file type. A series of file types (mov, avi etc) gives access to more options such as e.g.quality
. The problem is that the dot sign in the list of extensions used to check the desired format is missing. As thesuffix
parameter of apathlib.Path
object returns extensions with a dot, the more complex writer is just ignored. This is a silent bug as no error is produced and passed options likequality
are just ignored. This PR fixes this problem.