Apply a single documentation rule set across the codebase:
Example (illustrates the “no type duplication” + clear behavior):
def time_period_of_satellite(mass: float, radius: float, height: float) -> float:
"""Calculate the orbital period of a satellite.
Uses T = 2π * sqrt((R + h)^3 / (G * M)).
Units: mass in kg, radius/height in meters.
"""
...
Operationally: during review, enforce these as checklist items for every new/changed file and function/method docstring.
Enter the URL of a public GitHub repository