Try again
diff --git a/xos/services/fabric/models.py b/xos/services/fabric/models.py
index 28e161a..d9e78b9 100644
--- a/xos/services/fabric/models.py
+++ b/xos/services/fabric/models.py
@@ -1,24 +1,10 @@
 from django.db import models
-from core.models import Service, PlCoreBase, Slice, Instance, Tenant, TenantWithContainer, Node, Image, User, Flavor, Subscriber, NetworkParameter, NetworkParameterType, Port, AddressPool
-from core.models.plcorebase import StrippedCharField
-import os
-from django.db import models, transaction
-from django.forms.models import model_to_dict
-from django.db.models import Q
-from operator import itemgetter, attrgetter, methodcaller
-from core.models import Tag
-from core.models.service import LeastLoadedNodeScheduler
 import traceback
 from xos.exceptions import *
 from xos.config import Config
 
-class ConfigurationError(Exception):
-    pass
-
 FABRIC_KIND = "fabric"
 
-CORD_USE_VTN = getattr(Config(), "networking_use_vtn", False)
-
 class FabricService(Service):
     KIND = FABRIC_KIND
 
@@ -27,6 +13,4 @@
         verbose_name = "Fabric Service"
         proxy = True
 
-    simple_attributes = ( ("autoconfig", True) )
-
-FabricService.setup_simple_attributes()
+    autoconfig = models.BooleanField(default=True, help_text="Autoconfigure the fabric")