Merge pull request #868 from cclauss/patch-2

Comment: F821 undefined name is done on purpose
This commit is contained in:
Raphael Deem 2017-07-26 13:18:29 -07:00 committed by GitHub
commit c866759bd4

View File

@ -24,7 +24,7 @@ def handler_3(request):
@exception_handler_app.route('/4') @exception_handler_app.route('/4')
def handler_4(request): def handler_4(request):
foo = bar foo = bar # noqa -- F821 undefined name 'bar' is done to throw exception
return text(foo) return text(foo)