Skip to content

Commit

Permalink
fixup type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Dec 17, 2023
1 parent d147d98 commit e4dc327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mitmproxy-rs/mitmproxy_rs/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class Stream:
@overload
def get_extra_info(self, name: Literal["process_name"], default: T) -> str | T: ...
@overload
def get_extra_info(self, name: str, default: T) -> T: ...
def get_extra_info(self, name: str, default: Any) -> Any: ...

def __repr__(self) -> str: ...

Expand Down

0 comments on commit e4dc327

Please sign in to comment.