Skip to content

Commit 83f7702

Browse files
committed
Fix linter warning
1 parent 970c275 commit 83f7702

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

riemann_client/command.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,16 @@ def echo_event(data):
6161
@click.option('--certfile', type=click.Path(),
6262
help='Public client certificate for TLS connections.')
6363
@click.pass_context
64-
def main(ctx, host, port, transport_type, timeout, ca_certs, keyfile, certfile):
64+
def main(
65+
ctx,
66+
host,
67+
port,
68+
transport_type,
69+
timeout,
70+
ca_certs,
71+
keyfile,
72+
certfile,
73+
):
6574
"""Connects to a Riemann server to send events or query the index
6675
6776
By default, will attempt to contact Riemann on localhost:5555 over TCP. The

0 commit comments

Comments
 (0)