Tip: post code (and format it using the </> code formatting button) rather than a pictures of code. That way we can copy and paste it into our answers.
Check if you’re trying to force a string into a numeric field. Try adding in a print statement with type(row['nitro_enable']).
If it comes back with a numeric type then that’s your problem.
Other things:
You don’t need parentheses in ... data, row, ('nitro_enable') ....
You don’t need to convert ‘Enabled’ to a string. It already is one.
As @Transistor hinted at, the type of column nitro_enable is numeric. So if you want to convert it you will need to either rebuild the dataset with the system.dataset.* functions, or the DatasetBuilder class.
Did you try the type() function as I suggested?
Is the database column a text column (what you want) or a boolean / integer column (which is not what you want)?
Paste your updated code (and not a screengrab) and the result.