We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e6abcb + 1b8caae commit 159a991Copy full SHA for 159a991
1 file changed
README.md
@@ -87,7 +87,7 @@ class StandardCalc():
87
def divide(self, a: int, b: int) -> float:
88
return a / b
89
90
-api = API(Logger, default_version='v1')
+api = API(log=Logger, default_version='v1')
91
api.register(BaseCalc(), 'v1')
92
api.register(StandardCalc(), "v2")
93
```
0 commit comments