mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 08:34:55 +00:00
14 lines
181 B
Python
14 lines
181 B
Python
"""
|
|
web_utils file
|
|
"""
|
|
|
|
|
|
def pop_id(data):
|
|
"""
|
|
to pop id, not in use
|
|
:param data:
|
|
:return: data
|
|
"""
|
|
data.pop('id') if 'id' in data else data
|
|
return data
|