dbrattli / OSlash

Functors, Applicatives, And Monads in Python
MIT License
714 stars 50 forks source link

Add repr to Left and Right #30

Open bcb opened 3 years ago

bcb commented 3 years ago

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

Before:

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

After:

>>> Left(1)
Left(1)