From 596a5793da8efa9d1603f421601f8676f1f2ed04 Mon Sep 17 00:00:00 2001 From: Fabian Schuh Date: Thu, 14 Jan 2016 12:37:50 +0100 Subject: [PATCH] [GrapheneClient] Initialize configuration --- grapheneapi/grapheneclient.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/grapheneapi/grapheneclient.py b/grapheneapi/grapheneclient.py index 6deadd65..d692191d 100644 --- a/grapheneapi/grapheneclient.py +++ b/grapheneapi/grapheneclient.py @@ -311,6 +311,11 @@ class GrapheneClient() : ws = None def __init__(self, config): + """ Initialize configuration + """ + + # Initialize through __init__ if available + config.__init__(config) available_features = dir(config)