Skip to content

Commit 761d85d

Browse files
committed
Fix runtime test lint
1 parent d496a4b commit 761d85d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_runtime.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
import re
55
import uuid
66
from datetime import timedelta
7-
from typing import cast
7+
from typing import Any, cast
88
from urllib.request import urlopen
99

1010
import pytest
11+
1112
from temporalio import workflow
1213
from temporalio.client import Client
1314
from temporalio.runtime import (
@@ -21,7 +22,6 @@
2122
_RuntimeRef,
2223
)
2324
from temporalio.worker import Worker
24-
2525
from tests.helpers import (
2626
LogHandler,
2727
assert_eq_eventually,
@@ -290,7 +290,7 @@ async def test_opentelemetry_histogram_bucket_overrides(client: Client):
290290
lock = threading.Lock()
291291

292292
class Handler(BaseHTTPRequestHandler):
293-
def log_message(self, *_args):
293+
def log_message(self, format: str, *args: Any):
294294
pass # silence default stderr logging
295295

296296
def do_POST(self):

0 commit comments

Comments
 (0)