class Produtos(models.Model):
#id = models.AutoField(primary_key=True)
nomeproduto = models.CharField(max_length=50, blank=True, null=True)
quantproduto = models.CharField(max_length=30, blank=False, unique=True)
status = models.CharField('Status', max_length=10, default='ATIVO', blank=False, null=False)
class Meta:
db_table: str = 'usuarios'
ordering = ('nome_produto',)
The main problem is it inform indentation error but I am blind I am beginner in the language so any obvious error tell me, please.