You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/designer_plugin/models.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,11 +48,11 @@ class PluginResponse(BaseModel, Generic[RetType]):
48
48
status: PluginStatus=Field(description="Status of plugin API call.")
49
49
d3Log: str|None=Field(
50
50
default=None,
51
-
description="The D3 log field captures the console log for the time the Python script is executing, recording any output generated by running a Python command, including the time taken to execute the Python command. As this captures the Designer console output, it is possible other threads may write to this output during this period causing additional irrelevant output.",
51
+
description="The d3Log field captures the Designer console log for the time the Python script is executing, recording any output generated by running a Python command, including the time taken to execute the Python command. As this captures the Designer console output, it is possible other threads may write to this output during this period causing additional irrelevant output.",
52
52
)
53
53
pythonLog: str|None=Field(
54
54
default=None,
55
-
description="This output field is the pure Python output, recording any print statements or warnings occurring during the execution of the script. This output will also appear in the d3Log field, however, it may be mixed with other application output.",
55
+
description="This output field is the pure Python output, recording any print statements or warnings that occur during the execution of the script. This output will also appear in the d3Log field. However, in the d3Log field it will be mixed with other Designer log output.",
56
56
)
57
57
returnValue: RetType=Field(description="Return value of python plugin execution")
58
58
@@ -112,7 +112,7 @@ class PluginException(Exception):
112
112
113
113
Attributes:
114
114
status: The status information from the failed plugin call
0 commit comments