From 0151624310b44dd99d3338872757aa1f3aede863 Mon Sep 17 00:00:00 2001 From: Lukas Rist Date: Mon, 4 Mar 2024 23:51:13 +0100 Subject: [PATCH] formatting --- conpot/protocols/IEC104/frames.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/conpot/protocols/IEC104/frames.py b/conpot/protocols/IEC104/frames.py index e525f0bf..c0e52e16 100644 --- a/conpot/protocols/IEC104/frames.py +++ b/conpot/protocols/IEC104/frames.py @@ -253,7 +253,10 @@ class IOA(Packet): class QOS(Packet): # Quality of set-point command name = "QOS" - fields_desc = [XBitField("seq", 0, 1), XBitField("QL", 0, 7)] # seq used to be S/E, threw an error + fields_desc = [ + XBitField("seq", 0, 1), + XBitField("QL", 0, 7), + ] # seq used to be S/E, threw an error class QDS(Packet):