Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Annotate handlers & add py.typed #3321

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyro/poutine/collapse_messenger.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


from functools import reduce, singledispatch
from typing import TYPE_CHECKING, FrozenSet, Tuple
from typing import TYPE_CHECKING, Any, FrozenSet, Tuple

from typing_extensions import Self

Expand Down Expand Up @@ -85,7 +85,7 @@ class CollapseMessenger(TraceMessenger):

_coerce = None

def __init__(self, *args, **kwargs) -> None:
def __init__(self, *args: Any, **kwargs: Any) -> None:
if CollapseMessenger._coerce is None:
import funsor
from funsor.distribution import CoerceDistributionToFunsor
Expand Down
Loading
Loading