File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -446,18 +446,18 @@ def concat(left, right):
446
446
"""
447
447
if left .keys != right .keys :
448
448
msg = '\n \t ' .join (["Keys do not match:" ,
449
- "Intersection: {both!r}" ,
450
- "Disjoint: {just_one!r}"
451
- ]).format (
452
- both = left .keys & right .keys ,
453
- just_one = left .keys ^ right .keys )
449
+ "Intersection: {both!r}" ,
450
+ "Disjoint: {just_one!r}" ]).format (
451
+ both = left .keys & right .keys ,
452
+ just_one = left .keys ^ right .keys )
454
453
455
454
raise ValueError (msg )
456
455
457
456
_l = left ._transpose ()
458
457
_r = right ._transpose ()
459
458
return reduce (add , (_cycler (k , _l [k ] + _r [k ]) for k in left .keys ))
460
459
460
+
461
461
def cycler (* args , ** kwargs ):
462
462
"""
463
463
Create a new `Cycler` object from a single positional argument,
You can’t perform that action at this time.
0 commit comments