We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddf81a8 commit 29d344eCopy full SHA for 29d344e
1 file changed
dpath/types.py
@@ -7,11 +7,11 @@ class MergeType(IntFlag):
7
"""List objects are combined onto one long list (NOT a set). This is the default flag."""
8
9
REPLACE = auto()
10
- """Instead of combining list objects, when 2 list objects are at an equal depth of merge, replace the destination
+ """Instead of combining list objects, when 2 list objects are at an equal depth of merge, replace the destination \
11
with the source."""
12
13
TYPESAFE = auto()
14
- """When 2 keys at equal levels are of different types, raise a TypeError exception. By default, the source
+ """When 2 keys at equal levels are of different types, raise a TypeError exception. By default, the source \
15
replaces the destination in this situation."""
16
17
0 commit comments