diff --git a/colab/plugins/gitlab/models.py b/colab/plugins/gitlab/models.py index 225c563..9457a49 100644 --- a/colab/plugins/gitlab/models.py +++ b/colab/plugins/gitlab/models.py @@ -43,7 +43,7 @@ class GitlabGroup(models.Model): result = list() for project in projects: if self.path in project.namespace: - result.append(project) + result.append(project) return result @property diff --git a/colab/plugins/gitlab/tests/test_gitlab.py b/colab/plugins/gitlab/tests/test_gitlab.py index 23cf64e..40ebf74 100644 --- a/colab/plugins/gitlab/tests/test_gitlab.py +++ b/colab/plugins/gitlab/tests/test_gitlab.py @@ -2,7 +2,6 @@ Test User class. Objective: Test parameters, and behavior. """ -from datetime import datetime from django.test import TestCase, Client from colab.plugins.gitlab.models import (GitlabProject, GitlabGroup, GitlabIssue, GitlabComment, -- libgit2 0.21.2