Likianta Me

Results 5 comments of Likianta Me

> 通过查看 发现是 markup.py里出现错误 > > 也就是这个文件的第36行 MarksMeaning = dict[MarkMeaning, t.Any] ? > > 通过我看了看 我觉得你这个是不在定义类型 MarksMeaning = Dict[MarkMeaning, t.Any] 它应该是这样的吧 > > 我发现很多文件你定义类型用的都是小写的 我使用3.8 全部报错,是不支持3.8嘛? 是的. 该写法在 python 3.9...

> 注释掉该行导入 并把使用到std_print的 我看了使用到该函数的代码 我想这只是一个日志输出 我替换成print 终于可以用了 这里确实是用于打印输出, 你的改动可以通过, 尽管效果可能与预期存在一些差异. 下面是一些补充说明. 在新版 lk-logger 中, `std_print` 被改名为 `builtin_print`. 它的写法变成了: ```python from lk_logger import builtin_print builtin_print(...) ``` `builtin_print` 与 python 内置的 `print`...

这个报错应该是指它的依赖库版本过时了, 我在明天尝试修复一下.

在最新的版本 (4.4.2) 中, 该问题已经被修复. 很抱歉拖了这么久, 该项目这几个月的更新频率较低, 但仍在准备一些较大的更新. 我目前在周边工作上进行努力.

I will take a look at this, since there are several choices for live reloading (like QFileWather, [watchdog](https://github.com/gorakhargosh/watchdog), qmllive, [qhot](https://github.com/patrickelectric/qhot)), let me find out what can I do.