Skip to content

Commit

Permalink
code review: typing.Iterable s deprecated since python 3.9
Browse files Browse the repository at this point in the history
Co-authored-by: David Loiseaux <[email protected]>
  • Loading branch information
VincentRouvreau and DavidLapous authored Nov 21, 2024
1 parent 4d14cbc commit f80347f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python/gudhi/delaunay_complex.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ from libcpp.string cimport string
from libcpp cimport bool
from libc.stdint cimport intptr_t
import warnings
from typing import Literal, Optional, Iterable
from typing import Literal, Optional
from collections.abc import Iterable

from gudhi.simplex_tree cimport *
from gudhi.simplex_tree import SimplexTree
Expand Down

0 comments on commit f80347f

Please sign in to comment.