Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dovakiins
/
qwerrwe
like
0
Build error
App
Files
Files
Community
8b617cc
qwerrwe
/
src
/
axolotl
/
utils
/
dict.py
Nanobit
Apply black formatter
7bf2069
over 1 year ago
raw
Copy download link
history
blame
199 Bytes
from
addict
import
Dict
class
DictDefault
(
Dict
):
"""
A Dict that returns None instead of returning empty Dict for missing keys.
"""
def
__missing__
(
self, key
):
return
None