Skip to content

Commit e2284fe

Browse files
author
Niall
committed
Clean up
1 parent 69457cf commit e2284fe

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Byte-compiled / optimized / DLL files
55
__pycache__/
66
*.py[cod]
7-
.virtualenv
87

98
# C extensions
109
*.so

examples/starwars/tests/test_mutation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,5 @@ def test_mutations():
7575
}
7676
}
7777
result = schema.execute(query)
78-
print(result.data)
7978
assert not result.errors
8079
assert result.data == expected

graphene_django/tests/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ class Article(models.Model):
4545
], default='es')
4646
importance = models.IntegerField('Importance', null=True, blank=True,
4747
choices=[(1, u'Very important'), (2, u'Not as important')])
48-
tag = models.CharField(max_length=100)
4948

5049
def __str__(self): # __unicode__ on Python 2
5150
return self.headline

0 commit comments

Comments
 (0)