Procházet zdrojové kódy

[update] formatting code

jhao před 7 roky
rodič
revize
2591918c87
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      Util/GetConfig.py

+ 2 - 2
Util/GetConfig.py

@@ -53,14 +53,13 @@ class GetConfig(object):
             password = None
         return password
 
-
     @LazyProperty
     def proxy_getter_functions(self):
         return self.config_file.options('ProxyGetter')
 
     @LazyProperty
     def host_ip(self):
-        return self.config_file.get('API','ip')
+        return self.config_file.get('API', 'ip')
 
     @LazyProperty
     def host_port(self):
@@ -70,6 +69,7 @@ class GetConfig(object):
     def processes(self):
         return int(self.config_file.get('API', 'processes'))
 
+
 config = GetConfig()
 
 if __name__ == '__main__':