From bcd46477431d6a859ec2836947cba24c452a3a3a Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 8 Oct 2020 18:44:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Add=20the=20new=20objects=20to?= =?UTF-8?q?=20=5F=5Finit=5F=5F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- royalnet/campaigns/__init__.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/royalnet/campaigns/__init__.py b/royalnet/campaigns/__init__.py index fd2a5275..d6a02a7a 100644 --- a/royalnet/campaigns/__init__.py +++ b/royalnet/campaigns/__init__.py @@ -1,8 +1,14 @@ from .campaign import * from .asynccampaign import * +from .challenge import * +from .asyncchallenge import * __all__ = ( "Campaign", - "AsyncCampaign" + "AsyncCampaign", + "Challenge", + "TrueChallenge", + "AsyncChallenge", + "TrueAsyncChallenge", )