@@ -378,8 +378,12 @@ class Review(models.Model):
378378 commit_id = models .CharField (max_length = 300 , help_text = "" )
379379 data = models .TextField (help_text = "review data ex: vulnerability file" )
380380 notes = models .ManyToManyField (Note , blank = True , help_text = "" )
381- created_at = models .DateTimeField (auto_now_add = True , help_text = "A field to track when review are created" )
382- updated_at = models .DateTimeField (auto_now = True , help_text = "A field to track when review are updated" )
381+ created_at = models .DateTimeField (
382+ auto_now_add = True , help_text = "A field to track when review are created"
383+ )
384+ updated_at = models .DateTimeField (
385+ auto_now = True , help_text = "A field to track when review are updated"
386+ )
383387 remote_url = models .CharField (max_length = 300 , blank = True , null = True , help_text = "" )
384388
385389 class ReviewStatus (models .IntegerChoices ):
@@ -389,7 +393,11 @@ class ReviewStatus(models.IntegerChoices):
389393 MERGED = 3
390394
391395 status = models .SmallIntegerField (
392- choices = ReviewStatus .choices , null = False , blank = False , default = 0 , help_text = "status of review"
396+ choices = ReviewStatus .choices ,
397+ null = False ,
398+ blank = False ,
399+ default = 0 ,
400+ help_text = "status of review" ,
393401 )
394402
395403 reputation = models .ManyToManyField (
0 commit comments