From fc282c583ac9b6e33c4a6b325a27114fe8c63be2 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Bayle <j2b.bayle@gmail.com>
Date: Thu, 21 Oct 2021 17:57:52 -0700
Subject: [PATCH] Set non-generated laser noise to 0 instead of None

---
 lisainstrument/instrument.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisainstrument/instrument.py b/lisainstrument/instrument.py
index 6fc400c..bc54e0b 100644
--- a/lisainstrument/instrument.py
+++ b/lisainstrument/instrument.py
@@ -1074,7 +1074,7 @@ class Instrument:
         # Laser noise are only generated for lasers locked on cavities,
         # in `simulate_locking.lock_on_cavity()`
 
-        self.laser_noises = ForEachMOSA(None)
+        self.laser_noises = ForEachMOSA(0)
 
         ## Clock noise
 
-- 
GitLab