Skip to content

Commit

Permalink
Made default argument nonsense to discourage manual invocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Mar 6, 2025
1 parent 08e77a3 commit 67e38bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion montepy/data_inputs/material.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ def _promote_nuclide(nuclide, strict):
def _contains_arb(
self,
*nuclides: Union[Nuclide, Nucleus, Element, str, int],
bool_func: co.abc.Callable[co.abc.Iterable[bool]] = all,
bool_func: co.abc.Callable[co.abc.Iterable[bool]] = None,
threshold: float = 0.0,
strict: bool = False,
) -> bool:
Expand Down

0 comments on commit 67e38bb

Please sign in to comment.