Skip to content

Commit

Permalink
sp
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Mar 22, 2024
1 parent 0098094 commit 0ae1b67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/fprime_gds/executables/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ def register_gds_function_plugin(cls) -> Type["GdsFunction"]:


class GdsApp(GdsBaseFunction):
""" GDS start-up proces functionality
""" GDS start-up process functionality
A pluggable base class used to start a new process as part of the GDS command line invocation. This allows
developers to add process-isolated functionality to the GDS network.
Plugin developers are required to implement the `get_process_invocation` function that returns a list of arguments
needed to invoke the process via python's `subrpocess`. Additionally, the developer must define the
needed to invoke the process via python's `subprocess`. Additionally, the developer must define the
`register_gds_function_plugin` class method annotated with the @gds_plugin_implementation annotation.
Standard plug-in functions (get_name, get_arguments) are available should the implementer desire these features.
Expand Down
2 changes: 1 addition & 1 deletion src/fprime_gds/executables/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def get_arguments(self) -> Dict[Tuple[str, ...], Dict[str, Any]]:
(f"--disable-{plugin.get_name()}", ): {
"action": "store_true",
"default": False,
"help": f"Disable the {category} plguin '{plugin.get_name()}'"
"help": f"Disable the {category} plugin '{plugin.get_name()}'"
}
})
arguments.update(plugin.get_arguments())
Expand Down

0 comments on commit 0ae1b67

Please sign in to comment.