From 6757eac309cc39be4d081e181e185e17446b4961 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Mon, 26 Feb 2024 13:52:37 +0100
Subject: [PATCH] fix defaults for non-specified streams

---
 .../tangostationcontrol/devices/sdp/beamlet.py               | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py b/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
index d9c73b822..4e8c5d781 100644
--- a/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
+++ b/tangostationcontrol/tangostationcontrol/devices/sdp/beamlet.py
@@ -657,7 +657,10 @@ class Beamlet(OPCUADevice):
 
         # Set MAC, IP, port
         for setting, value_if_undefined in [
-            ("FPGA_beamlet_output_multiple_hdr_eth_destination_mac_RW", "00:00:00:00:00:00"),
+            (
+                "FPGA_beamlet_output_multiple_hdr_eth_destination_mac_RW",
+                "00:00:00:00:00:00",
+            ),
             ("FPGA_beamlet_output_multiple_hdr_ip_destination_address_RW", "0.0.0.0"),
             ("FPGA_beamlet_output_multiple_hdr_udp_destination_port_RW", 0),
         ]:
-- 
GitLab