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/alphanum.py | |
| parent | d964e7fc6a644196993121f98f09bc66cd0e181d (diff) | |
| download | alphanum-f389e7c377caf91959a2bd4adde744eda9aeac85.tar.gz alphanum-f389e7c377caf91959a2bd4adde744eda9aeac85.zip | |
Update docstrings
Diffstat (limited to 'alphanum/alphanum.py')
| -rw-r--r-- | alphanum/alphanum.py | 8 |
1 files changed, 4 insertions, 4 deletions
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' """ |
