From 77af9629d331f8dd0c7099dd9cc7a160b9107246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9d=C3=A9ric=20Boquien?= Date: Thu, 8 Mar 2018 19:11:47 -0300 Subject: [PATCH] Add missing import. Reported by Dominika Wylezalek. --- CHANGELOG.md | 2 ++ pcigale/sed_modules/m2005.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00483bd5..12041286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ ### Changed ### Fixed - The histogram bin width was not computed optimally when some models were invalid. (David Corre & Médéric Boquien) +- Missing import in the `m2005` module. (Médéric Boquien, reported by Dominika Wylezalek) + ### Optimised - The estimation of the physical properties is made a bit faster when all the models are valid. (Médéric Boquien) diff --git a/pcigale/sed_modules/m2005.py b/pcigale/sed_modules/m2005.py index 7947504e..3daf68f8 100644 --- a/pcigale/sed_modules/m2005.py +++ b/pcigale/sed_modules/m2005.py @@ -13,6 +13,8 @@ This module implements the Maraston (2005) Single Stellar Populations. from collections import OrderedDict +import numpy as np + from . import SedModule from ..data import Database -- GitLab