Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pybandits/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ class NormalArray(BaseLocationScaleArray):
_pymc_class: ClassVar[type] = PymcNormal

@classmethod
def _get_distribution_specific_params(cls, shape: Tuple[PositiveInt, ...]) -> Dict[str, np.ndarray]:
def _get_distribution_specific_params(cls, _shape: Tuple[PositiveInt, ...]) -> Dict[str, np.ndarray]:
"""
Get distribution-specific parameters for Normal distribution.

Expand All @@ -766,8 +766,8 @@ def _get_distribution_specific_params(cls, shape: Tuple[PositiveInt, ...]) -> Di

Parameters
----------
shape : Tuple[PositiveInt, ...]
Shape of the distribution array.
_shape : Tuple[PositiveInt, ...]
Shape of the distribution array. Unused for the Normal distribution.

Returns
-------
Expand Down
Loading