1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-28 08:37:45 +02:00

Use new super syntax as per PEP 3135

This commit is contained in:
Sylvain Bellemare 2017-04-06 16:01:42 +02:00 committed by Sylvain Bellemare
parent cf006e34a5
commit c64a35c362

View File

@ -32,7 +32,7 @@ class StandaloneApplication(gunicorn.app.base.BaseApplication):
'''
self.options = options or {}
self.application = app
super(StandaloneApplication, self).__init__()
super().__init__()
def load_config(self):
config = dict((key, value) for key, value in self.options.items()