commit | f43825e4dd1ccde0314a9f56363925c74ae3addd | [log] [tgz] |
---|---|---|
author | Suraj Shetty <13928957+surajshetty3416@users.noreply.github.com> | Mon Sep 09 13:23:01 2019 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Mon Sep 09 13:23:01 2019 +0530 |
tree | 9228f5eba115b1e25321240e84079b28d246c886 | |
parent | 5f59c2ae75df90c92567a7c47c169b643b678cf3 [diff] |
fix: convert dict to list for iteration (#18963)
diff --git a/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_mws_api.py b/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_mws_api.py index fd364e8..cc4ccc5 100755 --- a/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_mws_api.py +++ b/erpnext/erpnext_integrations/doctype/amazon_mws_settings/amazon_mws_api.py
@@ -71,7 +71,7 @@ Helper function that removes all keys from a dictionary (d), that have an empty value. """ - for key in d.keys(): + for key in list(d): if not d[key]: del d[key] return d