psasselum

Results 2 comments of psasselum

I encountered this error because I was typing something that was already implicitly typed correctly: ```diff - name: models.CharField = models.CharField(max_length=100, primary_key=True) + name = models.CharField(max_length=100, primary_key=True)

Shouldn't the crash be prevented ? Is using the ``-u PEP631`` option directly in a try catch too complicated ? Maybe a better crash message with indication about what to...