From 1f97c8b577c714855362303720c9d404ed50e5c9 Mon Sep 17 00:00:00 2001 From: soju6jan Date: Mon, 3 Oct 2022 04:59:13 +0900 Subject: [PATCH] test --- lib/framework/init_declare.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/framework/init_declare.py b/lib/framework/init_declare.py index 61a07fb..df211fa 100644 --- a/lib/framework/init_declare.py +++ b/lib/framework/init_declare.py @@ -64,8 +64,9 @@ class CustomFormatter(logging.Formatter): # Suuport를 logger 생성전에 쓰지 않기 위해 중복 선언 def read_yaml(filepath): import yaml - with open(filepath, encoding='utf8') as file: - #with open(filepath, 'rb') as file: + + #with open(filepath, encoding='utf8') as file: + with open(filepath, 'rb') as file: data = yaml.load(file, Loader=yaml.FullLoader) return data