CURA-1923: Just something I missed

Forgot to remove 'self' from 'super().__init__()'
This commit is contained in:
Thomas Karl Pietrowski 2016-08-07 09:04:24 +02:00
parent dbe1d140c4
commit ecd80974f7

View file

@ -26,7 +26,7 @@ class SliceInfoJob(Job):
url = None url = None
def __init__(self, url, data): def __init__(self, url, data):
super.__init__(self) super().__init__()
self.url = url self.url = url
self.data = data self.data = data