Skip to content

Commit

Permalink
Split super init calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Micket authored and c3-builder committed Oct 17, 2023
1 parent 5e53aba commit 572cde9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion easybuild/easyblocks/generic/cargopythonbundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 572cde9

Please sign in to comment.