flake8 whitespace cleanup
authorDiane Trout <diane@ghic.org>
Tue, 12 May 2015 19:16:31 +0000 (12:16 -0700)
committerDiane Trout <diane@ghic.org>
Tue, 12 May 2015 19:16:31 +0000 (12:16 -0700)
experiments/models.py
experiments/views.py
samples/views.py

index 55d3117bab7d7c14e964a9b85e046f086a973f77..7dc64c713170b5233931ddea84424bedb95b43c2 100644 (file)
@@ -275,7 +275,6 @@ class FlowCell(models.Model):
 #    instance.update_data_runs()
 #post_init.connect(update_flowcell_dataruns, sender=FlowCell)
 
-
 LANE_STATUS_CODES = [(0, 'Failed'),
                      (1, 'Marginal'),
                      (2, 'Good'), ]
index 521e89f4852e9480376425382375dc844e375272..2b6cc11c48b5f5da6bbb1c1b28f7a00202031eeb 100644 (file)
@@ -136,7 +136,6 @@ def flowcell_detail(request, flowcell_id, lane_number=None):
     fc = get_object_or_404(FlowCell, flowcell_id__startswith=flowcell_id)
     fc.update_data_runs()
 
-
     if lane_number is not None:
         lanes = fc.lane_set.filter(lane_number=lane_number)
     else:
index 3b5ea350e2289e16d7474bec221580d8175311b4..24ac92a9c4a1d26c3cce4473bc1587d6eaae22cb 100644 (file)
@@ -25,7 +25,6 @@ from htsworkflow.util.conversion import str_or_none, parse_flowcell_id
 from htsworkflow.util import makebed
 from htsworkflow.util import opener
 
-
 LANE_LIST = [1, 2, 3, 4, 5, 6, 7, 8]
 SAMPLES_CONTEXT_DEFAULTS = {
     'app_name': 'Flowcell/Library Tracker',
@@ -482,8 +481,8 @@ def user_profile(request):
     context = {
         'page_name': 'User Profile',
         'media': '',
-        #'bcmagic': BarcodeMagicForm(),
-        #'select': 'settings',
+        # 'bcmagic': BarcodeMagicForm(),
+        # 'select': 'settings',
     }
     context.update(SAMPLES_CONTEXT_DEFAULTS)
     return render_to_response('registration/profile.html', context,