Commit d87cfa90 by stv

Fix PEP8: W292 no newline at end of file

parent 2f78b967
# Register signal handlers
import signals
import exceptions
\ No newline at end of file
import exceptions
......@@ -17,4 +17,4 @@ class RequestCache(object):
def process_response(self, request, response):
self.clear_request_cache()
return response
\ No newline at end of file
return response
......@@ -22,4 +22,4 @@ class PasswordResetFormNoActive(PasswordResetForm):
if any((user.password == UNUSABLE_PASSWORD)
for user in self.users_cache):
raise forms.ValidationError(self.error_messages['unusable'])
return email
\ No newline at end of file
return email
......@@ -176,4 +176,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['student']
\ No newline at end of file
complete_apps = ['student']
......@@ -6,4 +6,4 @@ def use_read_replica_if_available(queryset):
"""
If there is a database called 'read_replica', use that database for the queryset.
"""
return queryset.using("read_replica") if "read_replica" in settings.DATABASES else queryset
\ No newline at end of file
return queryset.using("read_replica") if "read_replica" in settings.DATABASES else queryset
......@@ -126,4 +126,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['bulk_email']
\ No newline at end of file
complete_apps = ['bulk_email']
......@@ -73,4 +73,4 @@ class GraphicalSliderToolSteps(object):
world.retry_on_exception(try_move)
GraphicalSliderToolSteps()
\ No newline at end of file
GraphicalSliderToolSteps()
......@@ -188,4 +188,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['shoppingcart']
\ No newline at end of file
complete_apps = ['shoppingcart']
......@@ -196,4 +196,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['shoppingcart']
\ No newline at end of file
complete_apps = ['shoppingcart']
......@@ -281,4 +281,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['shoppingcart']
\ No newline at end of file
complete_apps = ['shoppingcart']
......@@ -221,4 +221,4 @@ class Migration(SchemaMigration):
}
}
complete_apps = ['shoppingcart']
\ No newline at end of file
complete_apps = ['shoppingcart']
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment