chore: remove all six compat code

This commit is contained in:
Ankush Menat
2021-11-04 19:48:32 +05:30
parent 56a25a0c4f
commit 8fe5feb6a4
420 changed files with 179 additions and 678 deletions

View File

@@ -1,5 +1,3 @@
import base64
import hashlib
import hmac

View File

@@ -1,5 +1,3 @@
def pre_process(milestone):
return {
'title': milestone.title,

View File

@@ -30,7 +30,7 @@ def get_products_details():
#Get ASIN Codes
string_io = StringIO(frappe.safe_decode(listings_response.original))
csv_rows = list(csv.reader(string_io, delimiter=str('\t')))
csv_rows = list(csv.reader(string_io, delimiter='\t'))
asin_list = list(set([row[1] for row in csv_rows[1:]]))
#break into chunks of 10
asin_chunked_list = list(chunks(asin_list, 10))

View File

@@ -1,4 +1,3 @@
import base64
import hashlib
import hmac