We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bbc770 commit d523fbeCopy full SHA for d523fbe
tests/conftest.py
@@ -31,10 +31,10 @@
31
"3."
32
), f"Expected protobuf 3.x, got {protobuf_version}"
33
else:
34
- assert protobuf_version.startswith("4.") or protobuf_version.startswith(
35
- "5."
36
- ) or protobuf_version.startswith(
37
- "6."
+ assert (
+ protobuf_version.startswith("4.")
+ or protobuf_version.startswith("5.")
+ or protobuf_version.startswith("6.")
38
), f"Expected protobuf 4.x/5.x/6.x, got {protobuf_version}"
39
40
from temporalio.client import Client
0 commit comments