Browse Source

pylint openshift_facts

Jason DeTiberus 9 years ago
parent
commit
61adeef4c9
1 changed files with 2 additions and 4 deletions
  1. 2 4
      roles/openshift_facts/library/openshift_facts.py

+ 2 - 4
roles/openshift_facts/library/openshift_facts.py

@@ -35,10 +35,8 @@ def first_ip(network):
         Returns:
             str: first IPv4 address
     """
-    def atoi(addr):
-        return struct.unpack("!I", socket.inet_aton(addr))[0]
-    def itoa(addr):
-        return socket.inet_ntoa(struct.pack("!I", addr))
+    atoi = lambda addr: struct.unpack("!I", socket.inet_aton(addr))[0]
+    itoa = lambda addr: socket.inet_ntoa(struct.pack("!I", addr))
 
     (address, netmask) = network.split('/')
     netmask_i = (0xffffffff << (32 - atoi(netmask))) & 0xffffffff