This commit is contained in:
soju6jan
2022-10-02 23:34:53 +09:00
parent da7ebf398f
commit 1bc5cdf831
2 changed files with 3 additions and 1 deletions

View File

@@ -61,7 +61,8 @@ class CustomFormatter(logging.Formatter):
# Suuport를 logger 생성전에 쓰지 않기 위해 중복 선언
def read_yaml(filepath):
import yaml
with open(filepath, encoding='utf8') as file:
#with open(filepath, encoding='utf8') as file:
with open(filepath, 'rb') as file:
data = yaml.load(file, Loader=yaml.FullLoader)
return data