more readable syntax

This commit is contained in:
ryan 2016-02-24 11:43:57 +01:00
parent 8fd45048a4
commit 43b67b8318

View File

@ -21,10 +21,10 @@ class Monitor(statsd.StatsClient):
kwargs = {} kwargs = {}
# set prefix, parameters from configuration file # set prefix, parameters from configuration file
if not kwargs.get('prefix'): if 'prefix' not in kwargs:
kwargs['prefix'] = '{hostname}.'.format(hostname=node()) kwargs['prefix'] = '{hostname}.'.format(hostname=node())
if not kwargs.get('host'): if 'host' not in kwargs:
kwargs['host'] = bigchaindb.config['statsd']['host'] kwargs['host'] = bigchaindb.config['statsd']['host']
if not kwargs.get('port'): if 'port' not in kwargs:
kwargs['port'] = bigchaindb.config['statsd']['port'] kwargs['port'] = bigchaindb.config['statsd']['port']
super().__init__(*args, **kwargs) super().__init__(*args, **kwargs)