Completed
Push — master ( b71cd1...65231b )
by
unknown
12s
created

  A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
c 0
b 0
f 0
dl 0
loc 5
rs 10
1
import django
2
from django.db import models
3
4
5
class NestedModel(models.Model):
6
    text = models.TextField()
7
8
    class Meta:
9
        app_label = 'testapp_nested'
10
11
12
if django.VERSION[:2] < (1, 7):
13
    from actstream.runtests.testapp_nested.apps import TestappNestedConfig
14
15
    TestappNestedConfig().ready()
16