From a6dce2e22bd827afd00321a95890ae195d5ff176 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 8 Oct 2020 22:50:17 +0200 Subject: [PATCH] The sympasoap module includes the Client class --- sympasoap/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sympasoap/__init__.py b/sympasoap/__init__.py index e69de29..27bd155 100644 --- a/sympasoap/__init__.py +++ b/sympasoap/__init__.py @@ -0,0 +1,6 @@ +from .client import Client + + +__all__ = [ + "Client", +]