diff --git a/python_payload/bl00mbox/_patches.py b/python_payload/bl00mbox/_patches.py
index 97ea3bc24886f32090f73c8d761f0b74421dd467..be8affe4ba906eab06a13ce889b721fc8888b2f7 100644
--- a/python_payload/bl00mbox/_patches.py
+++ b/python_payload/bl00mbox/_patches.py
@@ -30,9 +30,9 @@ class _PatchItemList:
         return iter(self._items)
 
     def __repr__(self):
-        rets = ""
+        ret = ""
         for x in self._items:
-            a = "\n" + repr(getattr(self, x)).split("]")
+            a = ("\n" + repr(getattr(self, x))).split("]")
             a[0] += ": " + x
             ret += "]".join(a)
         return ret