OSlash
OSlash copied to clipboard
Add repr to Left and Right
I've found these classes need repr's when debugging.
Before:
>>> Left(1)
<oslash.either.Left object at 0x10b728d90>
After:
>>> Left(1)
Left(1)