From 951ca6449088b3bfc9eb34af185be15a75936a28 Mon Sep 17 00:00:00 2001 From: Jungwoo Date: Mon, 5 Dec 2022 13:01:24 +0900 Subject: [PATCH] Update port type error port should be input as integer --- mefamo/mefamo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mefamo/mefamo.py b/mefamo/mefamo.py index 240b316..0e87f88 100644 --- a/mefamo/mefamo.py +++ b/mefamo/mefamo.py @@ -86,7 +86,7 @@ def __init__(self, input = 0, ip = '127.0.0.1', port = 11111, show_3d = False, h self.blendshape_calulator = BlendshapeCalculator() self.ip = ip - self.upd_port = port + self.upd_port = int(port) self.image_height, self.image_width, channels = (480, 640, 3)