change: remove unused imports

This commit is contained in:
debugtalk
2019-10-04 23:12:20 +08:00
parent b3077f1e79
commit b2221f2815
18 changed files with 43 additions and 26 deletions

View File

@@ -4,6 +4,7 @@ import json
from functools import wraps
from flask import Flask, make_response, request
from httprunner.built_in import gen_random_string
try:
@@ -53,6 +54,7 @@ def get_sign(*args):
sign = hmac.new(sign_key, content, hashlib.sha1).hexdigest()
return sign
def gen_md5(*args):
return hashlib.md5("".join(args).encode('utf-8')).hexdigest()