Indentation in python can be whatever, right? the first nested scope can be indented with 4 spaces, one deeper can be indented with 6, and its sibling with 7.
So, here me out:
I propose to do move away from geometric indentation to Fibonacci indentation.
Geometric indentation: a scope nested n-deep is indented with c*n leading spaces (c>0)
Fibonacci indentation: a scope nested n-deep is indented with F_{n+2}-1 leading spaces.
Here's a screenshot of what some code would look like









