From 6ac30ae48616b8ff7055f9adc07d15bc9c1d24bc Mon Sep 17 00:00:00 2001 From: David Stansby Date: Mon, 17 Feb 2025 11:43:31 +0000 Subject: [PATCH] Remove unused imports --- zarr/core.py | 3 +-- zarr/tests/test_core.py | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/zarr/core.py b/zarr/core.py index 7ca5641469..0bbea83816 100644 --- a/zarr/core.py +++ b/zarr/core.py @@ -1,11 +1,10 @@ import binascii import hashlib -from inspect import stack import itertools import math import operator import re -from functools import partial, reduce +from functools import reduce from typing import Any import warnings diff --git a/zarr/tests/test_core.py b/zarr/tests/test_core.py index e2f5232f13..90acb35890 100644 --- a/zarr/tests/test_core.py +++ b/zarr/tests/test_core.py @@ -2,7 +2,6 @@ import sys import pickle import shutil -import re from typing import Any, Literal, Optional, Tuple, Union, Sequence import unittest