Skip to content

Commit

Permalink
Update django to 5.1.6 (#2503)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored Feb 6, 2025
1 parent 02ad718 commit 1e96a30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django-stubs/utils/ipv6.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from ipaddress import IPv6Address
from typing import Any

MAX_IPV6_ADDRESS_LENGTH: int

def clean_ipv6_address(
ip_str: Any, unpack_ipv4: bool = False, error_message: str = ..., max_length: int = 39
) -> str: ...
def is_valid_ipv6_address(ip_str: str) -> bool: ...
def is_valid_ipv6_address(ip_str: str | IPv6Address) -> bool: ...

0 comments on commit 1e96a30

Please sign in to comment.