1# Error:
2inconsistent use of tabs and spaces in indentation
3
4# Solution:
5# This error usually comes up when you are using a mix of spaces and
6# tabs for indentation in Python (which is often caused by copy-pasting
7# code from somewhere else). To fix, convert all tabs to 4 spaces in
8# your text editor. E.g. in Atom, the 'Whitespace: Convert Tabs to
9# Spaces' command that you can find with Cmd+Shift+P works nicely.
10
11# Note, the PEP8 style guide for Python recommends using 4 spaces for
12# indentation instead of tabs. You may need to change the space/tab
13# settings in your text editor if it's set to auto-convert any of these
14# characters.