Correct method call name

This commit is contained in:
2026-06-03 12:23:47 +02:00
committed by kitoy
parent e0323af817
commit 25d6541894

View File

@@ -12,7 +12,7 @@ class MyBlocs:
def new(blocName, blocType, theme):
mybloc = None
if blocType in MyBlocs.listTypeBlocs(theme):
if blocType in MyBlocs.list_type_blocs(theme):
mybloc=dict()
mybloc['name'] = str(blocName)
mybloc['type'] = str(blocType)