标签:spl 很多 none 原因 sch 测试的 err 测试 去掉
这种错误有很多种原因,目前我在做接口自动化测试的时候遇到的这个问题,方法在调用的时候将()去掉即可
from guizero import App, Text # Action you would like to perform def counter(): text.value = int(text.value) + 1 app = App("Hello world") text = Text(app, text="1") text.repeat(1000, counter) # Schedule call to counter() every 1000ms 函数调用不能加括号 app.display()
Python提示:TypeError: 'NoneType' object is not callable的解决办法
标签:spl 很多 none 原因 sch 测试的 err 测试 去掉
原文地址:https://www.cnblogs.com/kekeoutlook/p/12234969.html