aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/pipeline_input_context/context_definition.md
diff options
context:
space:
mode:
authorThéo de la Hogue2024-04-25 22:57:21 +0200
committerThéo de la Hogue2024-04-25 22:57:21 +0200
commit6e150b914e3bb0a7718410363498efb794b4ecbc (patch)
tree8a658524112ba213d2c1b9536fd2c4722195ec01 /docs/user_guide/pipeline_input_context/context_definition.md
parent8252697b266ffd2e6552d6a8bc70e659f58e014b (diff)
parente7d7c073d5ca505b79c321e32d451e5a71faf566 (diff)
downloadargaze-6e150b914e3bb0a7718410363498efb794b4ecbc.zip
argaze-6e150b914e3bb0a7718410363498efb794b4ecbc.tar.gz
argaze-6e150b914e3bb0a7718410363498efb794b4ecbc.tar.bz2
argaze-6e150b914e3bb0a7718410363498efb794b4ecbc.tar.xz
Merge branch doc/update.
Diffstat (limited to 'docs/user_guide/pipeline_input_context/context_definition.md')
-rw-r--r--docs/user_guide/pipeline_input_context/context_definition.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/user_guide/pipeline_input_context/context_definition.md b/docs/user_guide/pipeline_input_context/context_definition.md
index 5456243..7d30438 100644
--- a/docs/user_guide/pipeline_input_context/context_definition.md
+++ b/docs/user_guide/pipeline_input_context/context_definition.md
@@ -25,7 +25,7 @@ class Example(ArFeatures.ArContext):
@property
def parameter(self):
- """Any required parameter."""
+ """Any context specific parameter."""
return self.__parameter
@parameter.setter
@@ -35,7 +35,7 @@ class Example(ArFeatures.ArContext):
@DataFeatures.PipelineStepEnter
def __enter__(self):
- # Start context according any required parameter
+ # Start context according any specific parameter
... self.parameter
# Assuming that timestamp, x and y values are available
@@ -53,4 +53,5 @@ class Example(ArFeatures.ArContext):
!!! note ""
- The next chapter explains how to [load a context to connect it with a pipeline](configuration_and_connection.md). \ No newline at end of file
+ The next chapter explains how to [load a context to connect it with a pipeline](configuration_and_connection.md).
+ \ No newline at end of file