Add a missing super() call

This commit is contained in:
Sajith Sasidharan 2020-07-15 16:14:10 -04:00
parent 69afd292c2
commit 07c24dbe59

View File

@ -600,9 +600,9 @@ class DeepCheckAndRepairResultsRenderer(MultiFormatResource):
:param allmydata.interfaces.IStatsProducer client: stats provider. :param allmydata.interfaces.IStatsProducer client: stats provider.
:param allmydata.monitor.IMonitor monitor: status, progress, and cancellation provider. :param allmydata.monitor.IMonitor monitor: status, progress, and cancellation provider.
""" """
super(DeepCheckAndRepairResultsRenderer, self).__init__()
self._client = client self._client = client
self.monitor = monitor self.monitor = monitor
self.children = {}
def getChild(self, name, req): def getChild(self, name, req):
if not name: if not name: