fix layer initialization

This commit is contained in:
Maximilian Hils 2015-08-31 13:49:47 +02:00
parent 7450bef615
commit 41e6e538df
1 changed files with 1 additions and 1 deletions

View File

@ -61,8 +61,8 @@ class Layer(_LayerCodeCompletion):
Args:
ctx: The (read-only) higher layer.
"""
super(Layer, self).__init__(*args, **kwargs)
self.ctx = ctx
super(Layer, self).__init__(*args, **kwargs)
def __call__(self):
"""