Fix: coefs absents en formations classiques plantaient bonus sport nouvelle formule

This commit is contained in:
Emmanuel Viennet 2022-02-18 12:12:16 +01:00
parent 716a6bf41f
commit 9e4c19a292

View File

@ -60,7 +60,7 @@ class ResultatsSemestreClassic(NotesTableCompat):
)
self.modimpl_inscr_df = inscr_mod.df_load_modimpl_inscr(self.formsemestre)
self.modimpl_coefs = np.array(
[m.module.coefficient for m in self.formsemestre.modimpls_sorted]
[m.module.coefficient or 0.0 for m in self.formsemestre.modimpls_sorted]
)
self.modimpl_idx = {
m.id: i for i, m in enumerate(self.formsemestre.modimpls_sorted)