What problem does it solve? Python codebases drift into inconsistent imports, naming, exception handling, and formatting when contributors lack a shared standard. This Skill gives an agent the concrete rules from Google's Python Style Guide so code is written and reviewed against one authoritative convention. ## Core Features & Use Cases - Language rules: Covers imports, exceptions, mutable global state, comprehensions, lambdas, default arguments, properties, threading, and true/false evaluations. - Formatting and documentation: Enforces 80-character lines, 4-space indentation, docstring structure for modules, classes, and functions, and import grouping and sorting. - Typing guidance: Provides rules for type annotations, NoneType handling, typing imports, and generics for public APIs. - Use Case: While reviewing a pull request, the agent flags a catch-all except: block, a mutable default argument, and misordered imports, then rewrites them to match Google's conventions. ## Quick Start Review this Python file using the Google Python style guide and fix any violations in imports, naming, and docstrings.