Skip to content

Commit a2abd7c

Browse files
committed
Using deprecated typing.Callable to maintain py3.8 compat
1 parent 972e647 commit a2abd7c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

s2fft/utils/iterative_refinement.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
"""Iterative scheme for improving accuracy of linear transforms."""
22

3-
from collections.abc import Callable
4-
from typing import TypeVar
3+
from typing import Callable, TypeVar
54

65
T = TypeVar("T")
76

0 commit comments

Comments
 (0)