Feat: Architecture redesign for Assessments, Commands, Modalities, Training Techniques, Reinforcement Schedules, Distractions, and Assessment Responses.

This commit is contained in:
2025-09-06 12:13:16 +01:00
parent 12f5fc994f
commit 2da465935d
158 changed files with 14781 additions and 3477 deletions

View File

@@ -49,7 +49,7 @@ class Understanding_Level(SQLAlchemy_ABC, Base):
def from_json(cls, json):
_m = 'Understanding_Level.from_json'
understanding_level = cls()
if json is None: return Understanding_Level
if json is None: return understanding_level
Helper_App.console_log(f'{_m}\njson: {json}')
understanding_level.id_understanding_level = -1
understanding_level.code = json[cls.FLAG_CODE]