From 464b2612cc23e5da351dca6ebd43d51a96239208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20H=C3=B6nig?= Date: Mon, 25 Dec 2017 22:11:10 +0100 Subject: [PATCH] zulip_bots: Make FakeClient accept arbitrary arguments. --- zulip_bots/zulip_bots/lib_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zulip_bots/zulip_bots/lib_tests.py b/zulip_bots/zulip_bots/lib_tests.py index 78d814f..504745c 100644 --- a/zulip_bots/zulip_bots/lib_tests.py +++ b/zulip_bots/zulip_bots/lib_tests.py @@ -6,7 +6,7 @@ from zulip_bots.lib import ( ) class FakeClient: - def __init__(self): + def __init__(self, *args, **kwargs): self.storage = dict() def get_profile(self):