Reorder imports in model to make me happy.
authorDiane Trout <diane@caltech.edu>
Thu, 20 Aug 2009 23:31:33 +0000 (23:31 +0000)
committerDiane Trout <diane@caltech.edu>
Thu, 20 Aug 2009 23:31:33 +0000 (23:31 +0000)
(stdlib -> large dependencies -> app specific parts)

htsworkflow/frontend/experiments/models.py

index a32d0bdb9ee76d1c924a42bf9d41fbd28222228b..53f14fa084f3e19e0de951edb72be4f16458b5ab 100755 (executable)
@@ -1,8 +1,11 @@
+import logging
+
+from django.core.exceptions import ObjectDoesNotExist
+from django.core import urlresolvers
 from django.db import models
+
 from htsworkflow.frontend.samples.models import *
 from htsworkflow.frontend.settings import options
-from django.core.exceptions import ObjectDoesNotExist
-import logging
 
 class ClusterStation(models.Model):
   name = models.CharField(max_length=50, unique=True)
@@ -22,9 +25,6 @@ try:
 except ValueError,e:
   logging.error("invalid value for frontend.default_pm")
 
-
-  
-
 class FlowCell(models.Model):
   
   flowcell_id = models.CharField(max_length=20, unique=True, db_index=True)