mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-08 05:51:50 -07:00
Fix for shopping list recipe delete route (#1954)
* fixed broken types * changed remove recipe route from delete to post
This commit is contained in:
parent
46cc3898ab
commit
c4eebaccca
5 changed files with 22 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
|||
from requests import Response
|
||||
from httpx import Response
|
||||
|
||||
|
||||
def assert_ignore_keys(dict1: dict, dict2: dict, ignore_keys: list = None) -> None:
|
||||
def assert_ignore_keys(dict1: dict, dict2: dict, ignore_keys: list | None = None) -> None:
|
||||
"""
|
||||
Itterates through a list of keys and checks if they are in the the provided ignore_keys list,
|
||||
if they are not in the ignore_keys list, it checks the value of the key in the provided against
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue