30👍
✅
You are missing a trailing comma in your ‘Password Details’ fieldset. It should be:
('Password Details',{'fields' : ('password',)}),)
^
| # this comma
Without the comma, ('password')
is the same as 'password'
, which is a string, not a tuple.
Source:stackexchange.com