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):
446446 """
447447 if left .keys != right .keys :
448448 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 )
454453
455454 raise ValueError (msg )
456455
457456 _l = left ._transpose ()
458457 _r = right ._transpose ()
459458 return reduce (add , (_cycler (k , _l [k ] + _r [k ]) for k in left .keys ))
460459
460+
461461def cycler (* args , ** kwargs ):
462462 """
463463 Create a new `Cycler` object from a single positional argument,
You can’t perform that action at this time.
0 commit comments