We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835ec6a commit 742c7e8Copy full SHA for 742c7e8
nutshell/segment_types/icons/icons.py
@@ -15,7 +15,7 @@
15
16
class IShouldntHaveToDoThisBidict(bidict.bidict):
17
"""Why is this not an __init__ parameter"""
18
- on_dup_val = bidict.OVERWRITE
+ on_dup_val = bidict.DROP_OLD
19
20
21
class Icon:
nutshell/segment_types/table/table.py
@@ -27,8 +27,8 @@ def generate_cardinals(d):
27
28
29
class Bidict(bidict.bidict):
30
- on_dup_kv = bidict.IGNORE
31
- on_dup_val = bidict.IGNORE
+ on_dup_kv = bidict.DROP_NEW
+ on_dup_val = bidict.DROP_NEW
32
33
34
class TableSegment:
0 commit comments