From d850faba4c61fe7ae8de9750f3628904b998e621 Mon Sep 17 00:00:00 2001 From: Mark Joshwel <89562141+markjoshwel@users.noreply.github.com> Date: Mon, 11 Sep 2023 10:51:09 +0800 Subject: [PATCH] docs: remove self in SurplusReverserProtocol conforming signature --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a8ae32..e00421d 100644 --- a/README.md +++ b/README.md @@ -705,7 +705,7 @@ class for documentation and static type checking of surplus reverser functions functions that conform to this protocol should have the following signature: ```python - def example(self, latlong: Latlong, level: int = 18) -> dict[str, Any]: ... + def example(latlong: Latlong, level: int = 18) -> dict[str, Any]: ... ``` - **information on conforming functions**