From 200a8a4cd12c69b5974da39b22751f8bc3fe0811 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Tue, 27 Apr 2021 22:39:06 -0700 Subject: [PATCH] mark __repr__ as no cover.. --- lora_comms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lora_comms.py b/lora_comms.py index 605591f..67d2c20 100644 --- a/lora_comms.py +++ b/lora_comms.py @@ -11,7 +11,7 @@ class PktBuf(Structure): def _from(self): return bytes(self.pkt[:self.pktlen]) - def __repr__(self): + def __repr__(self): #pragma: no cover return 'PktBuf(pkt=%s, pktlen=%s)' % (repr(self._from()), self.pktlen)