File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -424,14 +424,16 @@ def _build_docstring(func):
424
424
mapper_docstrings = {
425
425
_get_axis_coord : f"One or more of { (_AXIS_NAMES + _COORD_NAMES )!r} " ,
426
426
_get_axis_coord_single : f"One of { (_AXIS_NAMES + _COORD_NAMES )!r} " ,
427
- # _get_measure_variable: f"One of {_CELL_MEASURES!r}",
427
+ _get_axis_coord_time_accessor : "Time variable accessor e.g. 'T.month'" ,
428
+ _get_with_standard_name : "Standard names" ,
429
+ _get_measure_variable : f"One of { _CELL_MEASURES !r} " ,
428
430
}
429
431
430
432
sig = inspect .signature (func )
431
433
string = ""
432
434
for k in set (sig .parameters .keys ()) & set (_DEFAULT_KEY_MAPPERS ):
433
435
mappers = _DEFAULT_KEY_MAPPERS .get (k , [])
434
- docstring = "; " .join (
436
+ docstring = ";\n \t \t \t " .join (
435
437
mapper_docstrings .get (mapper , "unknown. please open an issue." )
436
438
for mapper in mappers
437
439
)
You can’t perform that action at this time.
0 commit comments