apitest/util/tools/iniHeaders.py

18 lines
345 B
Python

# coding:utf-8
"""
@author: jing
@contact: 529548204@qq.com
@file: iniHeaders.py
@time: 2022/5/11 10:56
"""
def iniheaders(headers):
"""
处理请求头特殊情况 如果请求头为空 读取后并不是字典格式 所以需要处理
:param headers:
:return:
"""
if not headers:
headers={}
return headers