diff options
| author | Cody Logan <clpo13@gmail.com> | 2020-01-08 09:36:51 -0800 |
|---|---|---|
| committer | Cody Logan <clpo13@gmail.com> | 2020-01-08 09:36:51 -0800 |
| commit | f389e7c377caf91959a2bd4adde744eda9aeac85 (patch) | |
| tree | 2024633179294e87757902aebf35d3e0694c1921 /alphanum | |
| parent | d964e7fc6a644196993121f98f09bc66cd0e181d (diff) | |
| download | alphanum-f389e7c377caf91959a2bd4adde744eda9aeac85.tar.gz alphanum-f389e7c377caf91959a2bd4adde744eda9aeac85.zip | |
Update docstrings
Diffstat (limited to 'alphanum')
| -rw-r--r-- | alphanum/__init__.py | 2 | ||||
| -rw-r--r-- | alphanum/alphanum.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/alphanum/__init__.py b/alphanum/__init__.py index 3afda23..502b5aa 100644 --- a/alphanum/__init__.py +++ b/alphanum/__init__.py @@ -1,3 +1,3 @@ from .alphanum import generate, generate_s # noqa: F401 -__version__ = '0.2.0dev1' +__version__ = '0.2.0.dev1' diff --git a/alphanum/alphanum.py b/alphanum/alphanum.py index 7049830..bb23cf5 100644 --- a/alphanum/alphanum.py +++ b/alphanum/alphanum.py @@ -16,9 +16,9 @@ def generate(length: int = 1) -> str: str: A pseudo-random alphanumeric string. Examples: - >>> print(generate()) + >>> print(alphanum.generate()) 'G' - >>> print(generate(10)) + >>> print(alphanum.generate(10)) 'a93jfDjdA0' """ @@ -37,9 +37,9 @@ def generate_s(length: int = 1) -> str: str: A random alphanumeric string. Examples: - >>> print(generate_s()) + >>> print(alphanum.generate_s()) '5' - >>> print(generate_s(10)) + >>> print(alphanum.generate_s(10)) 't3g0Gh9Naj' """ |
