Commit 1d87b77c3ce95da0516dad779bbc6d603f5e28f6

Authored by Lucas Kanashiro
2 parents 8a6b919a e20083f9

Merge branch 'gitlab_plugin' into 'master'

Gitlab plugin - Fixing flake8 warnings

See merge request !98
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,
... ...