Skip to content

Commit ba9c6e9

Browse files
build(deps): bump install-pinned/mypy from 2b552bed479e3f7065314667b670f7303619e989 to 75779f141592e4909d64e13f8a1861f06aa9cd8d in the dependencies group (#221)
* build(deps): bump install-pinned/mypy in the dependencies group Bumps the dependencies group with 1 update: [install-pinned/mypy](https://github.com/install-pinned/mypy). Updates `install-pinned/mypy` from 2b552bed479e3f7065314667b670f7303619e989 to 75779f141592e4909d64e13f8a1861f06aa9cd8d - [Release notes](https://github.com/install-pinned/mypy/releases) - [Commits](install-pinned/mypy@2b552be...75779f1) --- updated-dependencies: - dependency-name: install-pinned/mypy dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * make mypy happy --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maximilian Hils <[email protected]>
1 parent 1579c67 commit ba9c6e9

File tree

9 files changed

+44
-8
lines changed

9 files changed

+44
-8
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: mhils/workflows/checkout@v16
2424
- uses: ./.github/actions/setup
2525
- uses: install-pinned/maturin-with-zig@68c027568b7d08df7bc3c52476ae28d1d2d787f5
26-
- uses: install-pinned/mypy@2b552bed479e3f7065314667b670f7303619e989
26+
- uses: install-pinned/mypy@75779f141592e4909d64e13f8a1861f06aa9cd8d
2727
- uses: install-pinned/pdoc@5a894a20c6b4e9db4d3fe07efd9680b0f753b0d1
2828

2929
- run: maturin build --features docs,pyo3/extension-module

mitmproxy-rs/mitmproxy_rs/_pyinstaller/hook-mitmproxy_linux.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,5 @@
22
import os.path
33

44
binaries = [
5-
(
6-
os.path.join(sysconfig.get_path("scripts"), "mitmproxy-linux-redirector"),
7-
"."
8-
)
5+
(os.path.join(sysconfig.get_path("scripts"), "mitmproxy-linux-redirector"), ".")
96
]

mitmproxy-rs/mitmproxy_rs/certs.pyi

+5
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@ from __future__ import annotations
22

33
def add_cert(pem: str) -> None: ...
44
def remove_cert() -> None: ...
5+
6+
__all__ = [
7+
"add_cert",
8+
"remove_cert",
9+
]

mitmproxy-rs/mitmproxy_rs/dns.pyi

+5
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ class DnsResolver:
1111
async def lookup_ipv6(self, host: str) -> list[str]: ...
1212

1313
def get_system_dns_servers() -> list[str]: ...
14+
15+
__all__ = [
16+
"DnsResolver",
17+
"get_system_dns_servers",
18+
]

mitmproxy-rs/mitmproxy_rs/local.pyi

+5
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ class LocalRedirector:
1717
async def wait_closed(self) -> None: ...
1818
@staticmethod
1919
def unavailable_reason() -> str | None: ...
20+
21+
__all__ = [
22+
"start_local_redirector",
23+
"LocalRedirector",
24+
]

mitmproxy-rs/mitmproxy_rs/process_info.pyi

+6
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@ class Process:
1414
def is_visible(self) -> bool: ...
1515
@property
1616
def is_system(self) -> bool: ...
17+
18+
__all__ = [
19+
"active_executables",
20+
"executable_icon",
21+
"Process",
22+
]

mitmproxy-rs/mitmproxy_rs/tun.pyi

+8-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ from typing import final
55
from . import Stream
66

77
async def create_tun_interface(
8-
handle_tcp_stream: Callable[[Stream], Awaitable[None]],
9-
handle_udp_stream: Callable[[Stream], Awaitable[None]],
10-
tun_name: str | None = None,
8+
handle_tcp_stream: Callable[[Stream], Awaitable[None]],
9+
handle_udp_stream: Callable[[Stream], Awaitable[None]],
10+
tun_name: str | None = None,
1111
) -> TunInterface: ...
1212
@final
1313
class TunInterface:
@@ -17,3 +17,8 @@ class TunInterface:
1717
def __repr__(self) -> str: ...
1818
@staticmethod
1919
def unavailable_reason() -> str | None: ...
20+
21+
__all__ = [
22+
"create_tun_interface",
23+
"TunInterface",
24+
]

mitmproxy-rs/mitmproxy_rs/udp.pyi

+6
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,9 @@ async def open_udp_connection(
2222
*,
2323
local_addr: tuple[str, int] | None = None,
2424
) -> Stream: ...
25+
26+
__all__ = [
27+
"start_udp_server",
28+
"UdpServer",
29+
"open_udp_connection",
30+
]

mitmproxy-rs/mitmproxy_rs/wireguard.pyi

+7
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ class WireGuardServer:
2020
def close(self) -> None: ...
2121
async def wait_closed(self) -> None: ...
2222
def __repr__(self) -> str: ...
23+
24+
__all__ = [
25+
"genkey",
26+
"pubkey",
27+
"start_wireguard_server",
28+
"WireGuardServer",
29+
]

0 commit comments

Comments
 (0)