diff options
| author | Collin Anderson <cmawebsite@gmail.com> | 2015-02-05 13:25:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-06 09:30:35 -0500 |
| commit | db77915c9fd35a203edd8206f702ee4082f04d4a (patch) | |
| tree | 4e97bb2cba7f08dc080992e266e18e9a9c9cc5f5 /tests/model_forms | |
| parent | eb45a29565fe006b87657e9ee24054c66a6474f9 (diff) | |
Fixed E265 comment style
Diffstat (limited to 'tests/model_forms')
| -rw-r--r-- | tests/model_forms/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/model_forms/tests.py b/tests/model_forms/tests.py index 82fc0925d0..f1cf77a6a6 100644 --- a/tests/model_forms/tests.py +++ b/tests/model_forms/tests.py @@ -961,10 +961,10 @@ class ModelToDictTests(TestCase): with self.assertNumQueries(0): d = model_to_dict(art) - #Ensure all many-to-many categories appear in model_to_dict + # Ensure all many-to-many categories appear in model_to_dict for c in categories: self.assertIn(c.pk, d['categories']) - #Ensure many-to-many relation appears as a list + # Ensure many-to-many relation appears as a list self.assertIsInstance(d['categories'], list) |
