Update utils.py

This commit is contained in:
HibiKier 2022-06-13 11:03:21 +08:00 committed by GitHub
parent 830103b9d5
commit caa404d58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ from configs.config import SYSTEM_PROXY, Config
from typing import List, Union, Optional, Type, Any from typing import List, Union, Optional, Type, Any
from nonebot.adapters.onebot.v11 import Bot, Message from nonebot.adapters.onebot.v11 import Bot, Message
from nonebot.matcher import matchers, Matcher from nonebot.matcher import matchers, Matcher
from pathlib import Path
import httpx import httpx
import nonebot import nonebot
import pytz import pytz
@ -400,7 +401,7 @@ def change_pixiv_image_links(
return url return url
def change_img_md5(path_file: str) -> bool: def change_img_md5(path_file: Union[str, Path]) -> bool:
""" """
说明 说明
改变图片MD5 改变图片MD5
@ -412,4 +413,4 @@ def change_img_md5(path_file: str) -> bool:
f.write(str(int(time.time() * 1000))) f.write(str(int(time.time() * 1000)))
return True return True
except: except:
return False return False