From ac8458723b4fc5857eb0c08bb49c98dca1f4c6c2 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 21 Dec 2020 12:02:16 +0000 Subject: [PATCH] super() --- bfxbot/bfxwrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfxbot/bfxwrapper.py b/bfxbot/bfxwrapper.py index 73ed159..924cda0 100644 --- a/bfxbot/bfxwrapper.py +++ b/bfxbot/bfxwrapper.py @@ -51,7 +51,7 @@ class BfxWrapper(BfxRest): @retry() async def post(self, api_path: str, data: dict): - return await super.post(api_path, data) + return await super().post(api_path, data) ################################ # NEW METHODS