Skip to content

Commit

Permalink
FIX: deprecated use of collections.Iterable instead of collections.ab…
Browse files Browse the repository at this point in the history
…c.Iterable
  • Loading branch information
leloup314 committed Sep 1, 2023
1 parent 0668db5 commit 98770f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion irrad_spectroscopy/spectroscopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
import irrad_spectroscopy as isp
from irrad_spectroscopy.spec_utils import get_isotope_info, source_to_dict
from irrad_spectroscopy.physics import decay_law, gamma_dose_rate
from collections import OrderedDict, Iterable
from collections import OrderedDict
from collections.abc import Iterable
from scipy.optimize import curve_fit, fsolve, OptimizeWarning
from scipy.integrate import quad
from scipy.interpolate import interp1d
Expand Down

0 comments on commit 98770f2

Please sign in to comment.