Remove file not needed from AppEngine tests

This commit is contained in:
Sebastian Silva
2020-05-05 10:12:42 -05:00
committed by GitHub
parent a381a0cf8f
commit ce6e441c83

View File

@@ -1,15 +0,0 @@
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
class AllHandler(webapp.RequestHandler):
def get(self):
self.redirect("https://tycho.media.mit.edu/warps", True)
application = webapp.WSGIApplication([('/.*', AllHandler)])
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()