Skip to content
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
2 changes: 1 addition & 1 deletion stubs/netaddr/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "1.0.*"
version = "1.1.*"
upstream_repository = "https://github.com/drkjam/netaddr"
3 changes: 2 additions & 1 deletion stubs/netaddr/netaddr/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ from netaddr.strategy.eui64 import (
eui64_unix_expanded as eui64_unix_expanded,
valid_str as valid_eui64,
)
from netaddr.strategy.ipv4 import valid_str as valid_ipv4
from netaddr.strategy.ipv4 import expand_partial_address as expand_partial_ipv4_address, valid_str as valid_ipv4
from netaddr.strategy.ipv6 import (
ipv6_compact as ipv6_compact,
ipv6_full as ipv6_full,
Expand Down Expand Up @@ -116,6 +116,7 @@ __all__ = [
"eui64_bare",
"valid_eui64",
"SubnetSplitter",
"expand_partial_ipv4_address",
]

__version__: str
Expand Down
5 changes: 4 additions & 1 deletion stubs/netaddr/netaddr/cli.pyi
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from netaddr import *
from typing import Any

SHELL_NAMESPACE: dict[str, Any]
ASCII_ART_LOGO: str
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just listen to stubtest


def main() -> None: ...