The Google Python Style Guide is published here, and, besides being generally vaster than
PEP 8, it also differs from it in some aspects. However, the published version of the guide does mandate 4-space indents (like PEP 8 and like just about everybody else does).
Within Google, however, the actual rule is two-space indents (and you'll often catch me posting 2-space indented code because (a) it's habit by now, and (b) it's how my editors are set up;-). This was historically derived from the Google C++ style guide (Google used both C++ and Python essentially from day one, but I think C++ got its formal style guide first), which says
Spaces vs. Tabs
▽ Use only spaces, and indent 2 spaces
at a time.
Lots of googlers code in both C++ and Python all the time, so I guess keeping minor aspects of the two style guides in sync, where feasible, is considered a productivity enhancement.