Skip to content

Commit 0862cb2

Browse files
authored
Merge pull request #54 from /issues/17
Remove docstrings for internal globals
2 parents 3601c20 + 862fde7 commit 0862cb2

File tree

1 file changed

+13
-17
lines changed

1 file changed

+13
-17
lines changed

src/imcflibs/imagej/bdv.py

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,22 @@
2121
from .. import pathtools
2222
from ..log import LOG as log
2323

24+
25+
# internal template strings used in string formatting (note: the `"""@private"""`
26+
# pseudo-decorator is there to instruct [pdoc] to omit those variables when generating
27+
# API documentation):
2428
SINGLE = "[Single %s (Select from List)]"
25-
"""Template string to use to select only one value for the current dimension."""
29+
"""@private"""
2630
MULTIPLE = "[Multiple %ss (Select from List)]"
27-
"""Template string to use to select specified multiple values for the current
28-
dimension."""
31+
"""@private"""
2932
RANGE = "[Range of %ss (Specify by Name)]"
30-
"""Template string to use to select a range of values for the current
31-
dimension."""
32-
33+
"""@private"""
34+
SINGLE_FILE = "[NO (one %s)]"
35+
"""@private"""
36+
MULTI_SINGLE_FILE = "[YES (all %ss in one file)]"
37+
"""@private"""
38+
MULTI_MULTI_FILE = "[YES (one file per %s)]"
39+
"""@private"""
3340

3441
class ProcessingOptions(object):
3542
"""Helper to store processing options and generate parameter strings.
@@ -513,17 +520,6 @@ def fmt_use_acitt(self):
513520
return parameter_string + " "
514521

515522

516-
SINGLE_FILE = "[NO (one %s)]"
517-
"""Template string to use if the current dimension is singular (like only one
518-
angle)."""
519-
MULTI_SINGLE_FILE = "[YES (all %ss in one file)]"
520-
"""Template string to use if the current dimension is plural (like multiple
521-
angles) contained in a single file."""
522-
MULTI_MULTI_FILE = "[YES (one file per %s)]"
523-
"""Template string to use if the current dimension is plural (like multiple
524-
angles) contained in multiple files."""
525-
526-
527523
class DefinitionOptions(object):
528524
"""Helper to store definition options and generate parameters strings.
529525

0 commit comments

Comments
 (0)