We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7af0c commit 545b81dCopy full SHA for 545b81d
hypothesis-python/RELEASE.rst
@@ -0,0 +1,3 @@
1
+RELEASE_TYPE: patch
2
+
3
+This patch removes some ``# type: ignore`` comments following a :pypi:`mypy` update.
hypothesis-python/src/hypothesis/strategies/_internal/ipaddress.py
@@ -115,4 +115,4 @@ def ip_addresses(
115
if v not in (None, network.version):
116
raise InvalidArgument(f"{v=} is incompatible with {network=}")
117
addr_type = IPv4Address if network.version == 4 else IPv6Address
118
- return integers(int(network[0]), int(network[-1])).map(addr_type) # type: ignore
+ return integers(int(network[0]), int(network[-1])).map(addr_type)
0 commit comments