From 572cde91a9bd3979ae17a00a1f49c6e32299062e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20=C3=96hman?= Date: Tue, 17 Oct 2023 22:08:08 +0200 Subject: [PATCH] Split super init calls --- easybuild/easyblocks/generic/cargopythonbundle.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/easybuild/easyblocks/generic/cargopythonbundle.py b/easybuild/easyblocks/generic/cargopythonbundle.py index 2cbec2dd94..a55602770f 100644 --- a/easybuild/easyblocks/generic/cargopythonbundle.py +++ b/easybuild/easyblocks/generic/cargopythonbundle.py @@ -50,7 +50,8 @@ def extra_options(extra_vars=None): def __init__(self, *args, **kwargs): """Constructor for CargoPythonBundle easyblock.""" - super(CargoPythonBundle, self).__init__(*args, check_for_sources=False, **kwargs) + PythonBundle.__init__(self, *args, check_for_sources=False, **kwargs) + Cargo.__init__(self, *args, **kwargs) def extract_step(self): """Specifically use the overloaded variant from Cargo as is populates vendored sources with checksums."""