Commit e20083f98f5236eb21496655ee0081a9c08018a1

Authored by Macartur Sousa
1 parent dd6820bc

Fixed flake8

Signed-off-by: Macartur Sousa <macartur.sc@gmail.com>
colab/plugins/gitlab/models.py
... ... @@ -43,7 +43,7 @@ class GitlabGroup(models.Model):
43 43 result = list()
44 44 for project in projects:
45 45 if self.path in project.namespace:
46   - result.append(project)
  46 + result.append(project)
47 47 return result
48 48  
49 49 @property
... ...
colab/plugins/gitlab/tests/test_gitlab.py
... ... @@ -2,7 +2,6 @@
2 2 Test User class.
3 3 Objective: Test parameters, and behavior.
4 4 """
5   -from datetime import datetime
6 5 from django.test import TestCase, Client
7 6 from colab.plugins.gitlab.models import (GitlabProject, GitlabGroup,
8 7 GitlabIssue, GitlabComment,
... ...