Skip to content

Commit 225c753

Browse files
committed
fix(tests): fix syntax error in test_xhr.py for python3.8-3.9
1 parent c4e53e6 commit 225c753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/python/test_xhr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def test_xhr():
88
class TestHTTPRequestHandler(BaseHTTPRequestHandler):
9-
def log_request(self, code: int | str = "-", size: int | str = "-") -> None:
9+
def log_request(self, *args) -> None:
1010
return
1111

1212
def do_GET(self):

0 commit comments

Comments
 (0)