From 43b8bc670c88d13e596b154cdaa701f1f509c1d7 Mon Sep 17 00:00:00 2001 From: Macartur Sousa Date: Tue, 3 Nov 2015 11:28:21 -0200 Subject: [PATCH] Fix flake8 warning --- colab/plugins/models.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/colab/plugins/models.py b/colab/plugins/models.py index 5ec030e..618c193 100644 --- a/colab/plugins/models.py +++ b/colab/plugins/models.py @@ -1,13 +1,14 @@ from django.db import models from datetime import datetime + class TimeStampPlugin(models.Model): ''' Class used to store timestamps from plugins ''' - id = models.IntegerField(primary_key= True) - name = models.CharField(max_length=255,unique=True,null=False) - timestamp = models.DateTimeField(default=datetime.min,blank=True) + id = models.IntegerField(primary_key=True) + name = models.CharField(max_length=255, unique=True, null=False) + timestamp = models.DateTimeField(default=datetime.min, blank=True) @classmethod def update_timestamp(cls, class_name): -- libgit2 0.21.2