We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44a0b72 commit 85e1d27Copy full SHA for 85e1d27
2 files changed
cqsat/__init__.py
@@ -36,6 +36,8 @@ async def _(
36
event: MessageEvent,
37
state: T_State,
38
qth: str = ArgStr("QTH")):
39
+ if not Path.exists(LOCAL):
40
+ Path.mkdir(LOCAL)
41
qq = event.user_id
42
if qth in ["取消", "算了"]:
43
await sub.finish("已取消操作...")
cqsat/function.py
@@ -9,6 +9,8 @@
9
import re
10
from typing import Dict
11
12
+from typing import Optional
13
+
14
from .log import log
15
from .utils import *
16
from .path import *
0 commit comments