Skip to content
This repository has been archived by the owner on Feb 6, 2023. It is now read-only.

Added a missing comma #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def set_model(self, mean, min_value, max_value, mu, noise_amp):
assert min_value < max_value, 'Min. value must be smaller than max. value'
assert min_value < mean < max_value, 'Mean value must be in the interval delimited by min. and max. value'
assert mu >= 0, 'Mu must be greater or equal to zero'
assert noise_amp >= 0 'Noise amplitude must be greater or equal to zero'
assert noise_amp >= 0, 'Noise amplitude must be greater or equal to zero'

self._mean = mean
self._min = min_value
Expand Down