mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-21 19:11:30 +01:00
remove useless file
This commit is contained in:
parent
cb9488ed5d
commit
a02fa47017
|
@ -1,9 +0,0 @@
|
|||
def flatten(d: dict, leaf_type=str):
|
||||
out = {}
|
||||
for key, value in d.items():
|
||||
if isinstance(value, leaf_type):
|
||||
out[key] = value
|
||||
elif isinstance(value, dict):
|
||||
out = {**out, **flatten(value)}
|
||||
else:
|
||||
raise ValueError("Unexpected value type: {type(value)}")
|
Loading…
Reference in New Issue
Block a user