From 984005977d9c1fa3ddbf39707b4c80ab7806cd08 Mon Sep 17 00:00:00 2001 From: PCoder Date: Fri, 13 Sep 2019 11:17:05 +0530 Subject: [PATCH] Remove unused code --- commands/product.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/commands/product.py b/commands/product.py index 16dbb31..abb76e1 100755 --- a/commands/product.py +++ b/commands/product.py @@ -5,13 +5,6 @@ from decouple import config from .helper import OTPCredentials, load_dump_pretty -def product_command(command, otp): - data = {**otp.get_json(), "action": command} - r = requests.post(f"{config('UCLOUD_PAY_SERVER')}/product/action", - json=data) - return r - - @click.group() def product(): pass