Skip to content

Commit

Permalink
chore: run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilland committed Mar 27, 2024
1 parent 372db9e commit caaab8b
Show file tree
Hide file tree
Showing 2 changed files with 145 additions and 82 deletions.
4 changes: 3 additions & 1 deletion tests/pytest_mypy_testing/test_chaining.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,6 @@ def test_mypy_tap() -> None:
def log(value):
data.append(value)

reveal_type(_.chain([1, 2, 3, 4]).map(lambda x: x * 2).tap(log).value()) # R: builtins.list[builtins.int]
reveal_type(
_.chain([1, 2, 3, 4]).map(lambda x: x * 2).tap(log).value()
) # R: builtins.list[builtins.int]
Loading

0 comments on commit caaab8b

Please sign in to comment.