From b9d729449bc83176a7e3f7d7afa27bcc2b931c2d Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Fri, 24 Aug 2018 11:37:54 +0200 Subject: [PATCH] Cleaning up --- lib/webhooks/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/webhooks/common.py b/lib/webhooks/common.py index 3604247..88da917 100644 --- a/lib/webhooks/common.py +++ b/lib/webhooks/common.py @@ -194,8 +194,8 @@ def to_bool(value): # ============================================================================= def is_sequence(arg): - if not isinstance(arg, collections.Sequence): - return False + if not isinstance(arg, collections.Sequence): + return False if hasattr(arg, "strip"): return False -- 2.39.5