Skip to content

Commit 78f477d

Browse files
committed
Merge pull request #25 from tacaswell/pep8_bikeshed
PEP: whitespace
2 parents 99e92d5 + 6608747 commit 78f477d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cycler.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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+
461461
def cycler(*args, **kwargs):
462462
"""
463463
Create a new `Cycler` object from a single positional argument,

0 commit comments

Comments
 (0)