Skip to content

Commit

Permalink
Supress flake8 tests with # noqa: F821
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored May 30, 2018
1 parent 51ca3d5 commit c5ba40c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
if name == 'Alice':
if name == 'Alice': # noqa: F821 undefined name 'name'
print('Hi, Alice.')
elif age < 12:
elif age < 12: # noqa: F821 undefined name 'age'
print('You are not Alice, kiddo.')
else:
print('You are neither Alice nor a little kid.')

0 comments on commit c5ba40c

Please sign in to comment.