diff options
Diffstat (limited to 'utils/utils_yml/__init__.py')
-rw-r--r-- | utils/utils_yml/__init__.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/utils/utils_yml/__init__.py b/utils/utils_yml/__init__.py deleted file mode 100644 index 2617a21..0000000 --- a/utils/utils_yml/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 -# -*- encoding: utf-8 -*- -''' -@File : __init__.py -@Time : 2020/11/06 22:26:06 -@Author : Kyomotoi -@Contact : [email protected] -@Github : https://github.com/Kyomotoi -@License : Copyright © 2018-2020 Kyomotoi, All Rights Reserved. -''' -__author__ = 'kyomotoi' - -import yaml -from pathlib import Path - - -def load_yaml(file: Path) -> dict: - ''' - 读取yaml文件 - - :return: dict - ''' - with open(file, 'r', encoding='utf-8') as f: - data = yaml.safe_load(f) - return data |