Make a property docstring more property-a-like

This commit is contained in:
Dave Pearson
2022-11-10 21:43:14 +00:00
parent 2a80e1761d
commit d83c4aacbe

View File

@@ -21,11 +21,7 @@ class Pilot:
@property
def app(self) -> App:
"""Get a reference to the application.
Returns:
App: The App instance.
"""
"""App: A reference to the application."""
return self._app
async def press(self, *keys: str) -> None: