Skip to content

Commit ab0aca6

Browse files
committed
PEP8 Fixes
1 parent 5bbf0e0 commit ab0aca6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/webhook_launcher/app/boss.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ def launch(process, fields):
5353
with open(process, mode='r') as process_file:
5454
pdef = process_file.read()
5555

56-
launcher = Launcher(amqp_host = settings.BOSS_HOST,
57-
amqp_user = settings.BOSS_USER,
58-
amqp_pass = settings.BOSS_PASS,
59-
amqp_vhost = settings.BOSS_VHOST)
56+
launcher = Launcher(amqp_host=settings.BOSS_HOST,
57+
amqp_user=settings.BOSS_USER,
58+
amqp_pass=settings.BOSS_PASS,
59+
amqp_vhost=settings.BOSS_VHOST)
6060

6161
fields_dict = get_process_params(process) or {}
6262
fields_dict.update(fields)
@@ -68,9 +68,10 @@ def launch(process, fields):
6868
def launch_queue(fields):
6969
launch(settings.VCSCOMMIT_QUEUE, fields)
7070

71+
7172
def launch_notify(fields):
7273
launch(settings.VCSCOMMIT_NOTIFY, fields)
7374

75+
7476
def launch_build(fields):
7577
launch(settings.VCSCOMMIT_BUILD, fields)
76-

0 commit comments

Comments
 (0)