diff --git a/README.md b/README.md index cd620cb..6b0a47f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ class Calculator(meta.OborBase): pass class CalculatorServer(Calculator): - def tambah(self, a: int, b: int): + def add(self, a: int, b: int): print(f"adding {a} and {b}") return a+b @@ -72,7 +72,7 @@ class CalculatorServer(Calculator): ``` 3. Create client, you can create a simple `client.py` or a client application - - simple `client.py`` + - simple `client.py` ``` from oborpc.builder import ClientBuilder from calculator import Calculator diff --git a/setup.py b/setup.py index 1d2e611..037f90d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text() -VERSION = "0.0.5" +VERSION = "0.0.6" DESCRIPTION = "An easy setup object oriented RPC. Built-in setup for FastAPI and Flask" # Setting up