From 91a436abd52143faeeae4c8d1f7fbac9836bccb0 Mon Sep 17 00:00:00 2001 From: Brett Smith Date: Wed, 25 Mar 2020 10:50:50 -0400 Subject: [PATCH] testutil: Fix missing `return` typo. --- tests/testutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testutil.py b/tests/testutil.py index b50ee4e..956a478 100644 --- a/tests/testutil.py +++ b/tests/testutil.py @@ -218,7 +218,7 @@ class RTClient: try: att_seq = iter(self.TICKET_DATA[str(ticket_id)]) except KeyError: - None + return None att_id = str(attachment_id) multipart_id = None for attch in att_seq: