Skip to content

Commit 85f3071

Browse files
committed
Add trailing newlines to edited docstring
1 parent 0b4b7c5 commit 85f3071

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ansys/acp/core/_tree_objects/_grpc_helpers/property_helper.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ def mark_grpc_properties(cls: T) -> T:
9393
cls._GRPC_PROPERTIES = tuple(props_unique)
9494
if cls._SUPPORTED_SINCE is not None:
9595
if isinstance(cls.__doc__, str):
96-
cls.__doc__ += f"\n\nSupported since ACP gRPC server version {cls._SUPPORTED_SINCE}."
96+
cls.__doc__ += (
97+
f"\n\nSupported since ACP gRPC server version {cls._SUPPORTED_SINCE}.\n\n"
98+
)
9799
return cls
98100

99101

0 commit comments

Comments
 (0)