Skip to content

Commit fdac68f

Browse files
committed
Remove parens
1 parent b16c6ad commit fdac68f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dpath/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def merger(dst, src, _segments=()):
319319
target = segments.get(dst, current_path)
320320

321321
# If the types don't match, replace it.
322-
if ((type(found) != type(target)) and (not are_both_mutable(found, target))):
322+
if type(found) != type(target) and not are_both_mutable(found, target):
323323
segments.set(dst, current_path, found)
324324
continue
325325

0 commit comments

Comments
 (0)