Skip to content

Instantly share code, notes, and snippets.

@johnfraney
Created June 13, 2019 16:09
Show Gist options
  • Save johnfraney/16401235244426200cf639d9fa6fb348 to your computer and use it in GitHub Desktop.
Save johnfraney/16401235244426200cf639d9fa6fb348 to your computer and use it in GitHub Desktop.

This file contains a Python console block to lint

This contains an unknown variable:

>>> print("Hello")
'Hello'
>>> banana = "banana"
>>> for character in banana:
...     print(characterr)

This contains an EOL error:

>>> 'chocolate

This contains an undefined variable as a return:

>>> True
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment