Skip to content

Commit

Permalink
Apply proper code format
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhammerl committed Jul 30, 2024
1 parent f36bd83 commit 1cd20f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_resultify.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_hash(self):
assert len({Ok("a"), Err("a")}) == 2

def test_repr(self):
assert Ok(u"£10") == eval(repr(Ok(u"£10")))
assert Ok("£10") == eval(repr(Ok("£10")))
assert Ok("£10") == eval(repr(Ok("£10")))

def test_isinstance_result_type(self):
Expand Down

0 comments on commit 1cd20f7

Please sign in to comment.