martin-g commented on code in PR #3658:
URL: https://github.com/apache/avro/pull/3658#discussion_r2822422979
##########
lang/py/avro/test/sample_http_server.py:
##########
@@ -71,7 +78,7 @@ def do_POST(self) -> None:
def main():
- mail_server = http_server.HTTPServer(SERVER_ADDRESS, MailHandler)
+ mail_server = http.server.HTTPServer(SERVER_ADDRESS, MailHandler)
Review Comment:
I have no idea how this worked before
##########
lang/py/avro/test/test_script.py:
##########
@@ -57,7 +61,7 @@
def looney_records():
- return ({"first": f, "last": l, "type": t} for f, l, t in LOONIES)
Review Comment:
Here for some reason there was a problem with `l`, so I renamed it to `last`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]