Rename RestAuthenticatedEndpoints to RestAuthEndpoints (and bfxapi.rest.endpoints.rest_authenticated_endpoints to rest_auth_endpoints).

This commit is contained in:
Davide Casale
2023-06-12 15:45:28 +02:00
parent f343fce20f
commit d63c2c63c3
5 changed files with 7 additions and 6 deletions

View File

@@ -95,4 +95,5 @@ class BfxWebSocketInputs:
await self.__handle_websocket_input("foc", { "id": id })
async def calc(self, *args: str) -> None:
await self.__handle_websocket_input("calc", list(map(lambda arg: [arg], args)))
await self.__handle_websocket_input("calc",
list(map(lambda arg: [arg], args)))