From 92a553170959d93877ca6af26f43bae5e1efeb8b Mon Sep 17 00:00:00 2001 From: ant-arch Date: Sun, 13 Jul 2025 19:23:27 +0200 Subject: [PATCH] add missing return to __str__ method --- pyipmi/messaging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyipmi/messaging.py b/pyipmi/messaging.py index ab51aed..27062f9 100644 --- a/pyipmi/messaging.py +++ b/pyipmi/messaging.py @@ -196,3 +196,4 @@ def __str__(self): s += ' IPMI messaging: %s\n' % self.ipmi_messaging s += ' Link Auth.: %s\n' % self.link_auth s += ' Callback only: %s' % self.callback_only + return s