Roman Hergenreder 5 tháng trước cách đây
mục cha
commit
bfb383ec61
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      util.py

+ 3 - 0
util.py

@@ -19,6 +19,9 @@ def is_port_in_use(port):
     with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
         return s.connect_ex(('127.0.0.1', port)) == 0
 
+def nvl(a, b):
+    return b if a is None else a
+
 def get_payload_path(path=""):
     return os.path.realpath(os.path.join(os.path.dirname(__file__), path))