@@ -210,7 +210,7 @@ def _enhance_command(config, generic_workflow, gwjob, cached_job_values):
210210 gwjob : `lsst.ctrl.bps.GenericWorkflowJob`
211211 Generic workflow job to which the updated executable, arguments,
212212 and values should be saved.
213- cached_job_values : `dict` [`str`, dict[`str`, `Any`]]
213+ cached_job_values : `dict` [`str`, dict[`str`, `~typing. Any`]]
214214 Cached values common across jobs with same label. Updated if values
215215 aren't already saved for given gwjob's label.
216216 """
@@ -286,7 +286,7 @@ def _fill_arguments(use_shared, generic_workflow, arguments, cmdvals):
286286 Generic workflow containing the job.
287287 arguments : `str`
288288 String containing placeholders.
289- cmdvals : `dict` [`str`, `Any`]
289+ cmdvals : `dict` [`str`, `~typing. Any`]
290290 Any command line values that can be used to replace placeholders.
291291
292292 Returns
@@ -365,14 +365,14 @@ def _get_job_values(config, search_opt, cmd_line_key):
365365 ----------
366366 config : `lsst.ctrl.bps.BpsConfig`
367367 Bps configuration.
368- search_opt : `dict` [`str`, `Any`]
368+ search_opt : `dict` [`str`, `~typing. Any`]
369369 Search options to be used when searching config.
370370 cmd_line_key : `str` or None
371371 Which command line key to search for (e.g., "runQuantumCommand").
372372
373373 Returns
374374 -------
375- job_values : `dict` [ `str`, `Any` ]`
375+ job_values : `dict` [ `str`, `~typing. Any` ]`
376376 A mapping between job attributes and their values.
377377 """
378378 _LOG .debug ("cmd_line_key=%s, search_opt=%s" , cmd_line_key , search_opt )
@@ -443,7 +443,7 @@ def _handle_job_values(quantum_job_values, gwjob, attributes=_ATTRS_ALL):
443443 Job values for running single Quantum.
444444 gwjob : `lsst.ctrl.bps.GenericWorkflowJob`
445445 Generic workflow job in which to store the universal values.
446- attributes : `Iterable` [`str`], optional
446+ attributes : `~collections.abc. Iterable` [`str`], optional
447447 Job attributes to be set in the job following different rules.
448448 The default value is _ATTRS_ALL.
449449 """
@@ -463,7 +463,7 @@ def _handle_job_values_universal(quantum_job_values, gwjob, attributes=_ATTRS_UN
463463 Job values for running single Quantum.
464464 gwjob : `lsst.ctrl.bps.GenericWorkflowJob`
465465 Generic workflow job in which to store the universal values.
466- attributes : `Iterable` [`str`], optional
466+ attributes : `~collections.abc. Iterable` [`str`], optional
467467 Job attributes to be set in the job following different rules.
468468 The default value is _ATTRS_UNIVERSAL.
469469 """
@@ -502,11 +502,11 @@ def _handle_job_values_max(quantum_job_values, gwjob, attributes=_ATTRS_MAX):
502502
503503 Parameters
504504 ----------
505- quantum_job_values : `dict` [`str`, `Any`]
505+ quantum_job_values : `dict` [`str`, `~typing. Any`]
506506 Job values for running single Quantum.
507507 gwjob : `lsst.ctrl.bps.GenericWorkflowJob`
508508 Generic workflow job in which to store the aggregate values.
509- attributes : `Iterable` [`str`], optional
509+ attributes : `~collections.abc. Iterable` [`str`], optional
510510 Job attributes to be set in the job following different rules.
511511 The default value is _ATTR_MAX.
512512 """
@@ -547,11 +547,11 @@ def _handle_job_values_sum(quantum_job_values, gwjob, attributes=_ATTRS_SUM):
547547
548548 Parameters
549549 ----------
550- quantum_job_values : `dict` [`str`, `Any`]
550+ quantum_job_values : `dict` [`str`, `~typing. Any`]
551551 Job values for running single Quantum.
552552 gwjob : `lsst.ctrl.bps.GenericWorkflowJob`
553553 Generic workflow job in which to store the aggregate values.
554- attributes : `Iterable` [`str`], optional
554+ attributes : `~collections.abc. Iterable` [`str`], optional
555555 Job attributes to be set in the job following different rules.
556556 The default value is _ATTRS_SUM.
557557 """
0 commit comments