From f43f485789f2bffc6c48cb8e80eb5a277694def2 Mon Sep 17 00:00:00 2001
From: EndrII <EndrIIMail@gmail.com>
Date: Fri, 19 Jun 2020 10:46:42 +0300
Subject: [PATCH] fix syntaxys

---
 BuildBotLib/buildBotChangeSource.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/BuildBotLib/buildBotChangeSource.py b/BuildBotLib/buildBotChangeSource.py
index f77330c..c2c4559 100644
--- a/BuildBotLib/buildBotChangeSource.py
+++ b/BuildBotLib/buildBotChangeSource.py
@@ -1,7 +1,5 @@
 # This Python file uses the following encoding: utf-8
 from BuildBotLib.buildBotModule import BuildBotModule
-from buildbot.plugins import changes
-import os
 from BuildBotLib.secretManager import SecretManager
 
 
@@ -12,11 +10,13 @@ class BuildBotChangeSource(BuildBotModule):
         secret = SecretManager("/home/andrei/buildBotSecret/secret.json")
 
         self.masterConf['www']['change_hook_dialects'] = [
-            { 'github': {
-                'secret': secret.getValue('WebHook'),
-                'token': secret.getValue('gitHub'),
-                'strict': True
-            },
+            {
+                'github':
+                {
+                    'secret': secret.getValue('WebHook'),
+                    'token': secret.getValue('gitHub'),
+                    'strict': True,
+                },
             },
         ]