Skip to content

Commit

Permalink
fix introduced bug
Browse files Browse the repository at this point in the history
  • Loading branch information
andped10 committed Feb 28, 2024
1 parent 7272b3a commit 95b3b07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ def __init__(
material_a: Material,
material_b: Material,
fraction: Parameter,
name: str = 'EasyMaterialMixture',
name: str = None,
interface=None,
):
"""Constructor.
:param material_a: The first material.
:param material_b: The second material.
:param fraction: The fraction of material_b in material_a.
:param name: Name of the material, defaults to 'EasyMaterialMixture'.
:param name: Name of the material, defaults to None that causes the name to be constructed.
:param interface: Calculator interface, defaults to :py:attr:`None`.
"""
if name is None:
Expand Down

0 comments on commit 95b3b07

Please sign in to comment.