zeroconf: give inet_aton() str instead of bytes
All other uses of this function in this extension are already fixed (i.e. use
strings instead of bytes).
This was caught by pytype 2023.11.21 on Python 3.11.2.
--- a/hgext/zeroconf/Zeroconf.py Wed Dec 06 16:29:43 2023 +0100
+++ b/hgext/zeroconf/Zeroconf.py Sat Dec 02 15:02:03 2023 -0300
@@ -1859,7 +1859,7 @@
info = ServiceInfo(
b"_http._tcp.local.",
b"My Service Name._http._tcp.local.",
- socket.inet_aton(b"127.0.0.1"),
+ socket.inet_aton("127.0.0.1"),
1234,
0,
0,