Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Dovakiins
/
qwerrwe
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
923151f
qwerrwe
/
src
/
axolotl
/
utils
/
dict.py
Nanobit
refactor: fix previous refactors
56f9ca5
over 1 year ago
raw
Copy download link
history
blame
198 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