Skip to content

Commit d7aae45

Browse files
satisfy almighty mypy
1 parent c75f04c commit d7aae45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_maybe/test_maybe_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test_maybe_filter():
55
"""Ensures that .filter works correctly."""
6-
def factory(argument: int) -> bool:
6+
def factory(argument):
77
return argument % 2 == 0
88

99
assert Some(5).filter(factory) == Nothing

0 commit comments

Comments
 (0)