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 0b4b7c5 commit 85f3071Copy full SHA for 85f3071
src/ansys/acp/core/_tree_objects/_grpc_helpers/property_helper.py
@@ -93,7 +93,9 @@ def mark_grpc_properties(cls: T) -> T:
93
cls._GRPC_PROPERTIES = tuple(props_unique)
94
if cls._SUPPORTED_SINCE is not None:
95
if isinstance(cls.__doc__, str):
96
- cls.__doc__ += f"\n\nSupported since ACP gRPC server version {cls._SUPPORTED_SINCE}."
+ cls.__doc__ += (
97
+ f"\n\nSupported since ACP gRPC server version {cls._SUPPORTED_SINCE}.\n\n"
98
+ )
99
return cls
100
101
0 commit comments