From 2e05f1780588162070156a192b221c65226c43ab Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 3 Feb 2025 23:26:16 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- ome_zarr/axes.py | 5 ++--- ome_zarr/writer.py | 4 +--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/ome_zarr/axes.py b/ome_zarr/axes.py index 68ba2351..1a2b0e90 100644 --- a/ome_zarr/axes.py +++ b/ome_zarr/axes.py @@ -1,5 +1,4 @@ -"""Axes class for validating and transforming axes -""" +"""Axes class for validating and transforming axes""" from typing import Any, Union @@ -48,7 +47,7 @@ def to_list( @staticmethod def _axes_to_dicts( - axes: Union[list[str], list[dict[str, str]]] + axes: Union[list[str], list[dict[str, str]]], ) -> list[dict[str, str]]: """Returns a list of axis dicts with name and type""" axes_dicts = [] diff --git a/ome_zarr/writer.py b/ome_zarr/writer.py index db811b4c..dc8156ba 100644 --- a/ome_zarr/writer.py +++ b/ome_zarr/writer.py @@ -1,6 +1,4 @@ -"""Image writer utility - -""" +"""Image writer utility""" import logging import warnings