当我运行此代码时,它会给我以下错误。(虽然main.kv在同一路径中)。
这是错误>>
return mainwindow()TypeError:'NoneType'对象不可调用
这是代码
if($(this).find('svg').attr('fill') == '#bfbfbf')
答案 0 :(得分:1)
我认为你不需要括号。试试这个(加上根据其他答案修复缩进):
class KivyTest(App):
def build(self):
self.title="Kivy App Learning"
return mainwindow
答案 1 :(得分:0)
由于其缩进代码
,可能会发生这种情况试试这个:
class KivyTest(App):
def build(self):
self.title="Kivy App Learning"
return mainwindow()