From 37ada210a8304c59671d60748f9685c92d0851ef Mon Sep 17 00:00:00 2001 From: Setsugennoao <41454651+Setsugennoao@users.noreply.github.com> Date: Sun, 22 Oct 2023 20:25:56 +0200 Subject: [PATCH] Fix typo --- vsdeband/noise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsdeband/noise.py b/vsdeband/noise.py index 4afdb68..721f8e1 100644 --- a/vsdeband/noise.py +++ b/vsdeband/noise.py @@ -315,7 +315,7 @@ def _get_kw(self, kwargs: KwargsT) -> KwargsT: if hasattr(self, '_noise_type'): kwargs.update(type=self._noise_type) elif 'type' not in kwargs: - raise ValueError('Type must be specified! Alternatively, you can use a subclass like AddNoise.GAUSS .') + raise ValueError('Type must be specified! Alternatively, you can use a subclass like AddNoise.GAUSS.') return kwargs