zulip_bots: Make FakeClient accept arbitrary arguments.

This commit is contained in:
Robert Hönig 2017-12-25 22:11:10 +01:00 committed by showell
parent b9905e5fc8
commit 464b2612cc

View file

@ -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):