From 25d6541894247c55513f93580225c1e92d2c1d2f Mon Sep 17 00:00:00 2001 From: kitoy Date: Wed, 3 Jun 2026 12:23:47 +0200 Subject: [PATCH] Correct method call name --- app/models/blocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/blocs.py b/app/models/blocs.py index 53eaf06..b6afc67 100644 --- a/app/models/blocs.py +++ b/app/models/blocs.py @@ -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)