(self, size=None, chars=_DEFAULT_CHARS)
| 516 | string.digits) |
| 517 | |
| 518 | def __init__(self, size=None, chars=_DEFAULT_CHARS): |
| 519 | # type: (Optional[Union[int, RandNum]], str) -> None |
| 520 | if size is None: |
| 521 | size = RandNumExpo(0.01) |
| 522 | self.size = size |
| 523 | self.chars = chars |
| 524 | |
| 525 | def _command_args(self): |
| 526 | # type: () -> str |
nothing calls this directly
no test coverage detected