brotherton-erpnext/erpnext/e_commerce/shopping_cart
Ankush Menat a3ea985348
refactor: Use db.set_single_value (#35668)
I just applied semgrep autofix. Untested completed, review before merging.

```yaml
- id: frappe-set-value-semantics
  patterns:
    - pattern-either:
      - pattern: frappe.db.set_value($DOCTYPE, None, $...AFTER)
      - pattern: frappe.db.set_value($DOCTYPE, $DOCTYPE, $...AFTER)
  fix: frappe.db.set_single_value($DOCTYPE, $...AFTER)
  message: |
    If $DOCTYPE is a single doctype then using `frappe.db.set_value` is discouraged for setting values in DB. Use db.set_single_value for single doctype instead.
  languages: [python]
  severity: ERROR
```
2023-06-13 17:30:38 +05:30
..
__init__.py chore: Removed Shopping Cart Module 2021-10-12 16:54:11 +05:30
cart.py style: format code with black 2022-03-28 18:52:46 +05:30
product_info.py style: format code with black 2022-03-28 18:52:46 +05:30
test_shopping_cart.py refactor: Use db.set_single_value (#35668) 2023-06-13 17:30:38 +05:30
utils.py style: format code with black 2022-03-28 18:52:46 +05:30