OSlash icon indicating copy to clipboard operation
OSlash copied to clipboard

Add repr to Left and Right

Open bcb opened this issue 3 years ago • 0 comments

I've found these classes need repr's when debugging.

Before:

>>> Left(1)
<oslash.either.Left object at 0x10b728d90>

After:

>>> Left(1)
Left(1)

bcb avatar Jul 12 '21 01:07 bcb