From f389e7c377caf91959a2bd4adde744eda9aeac85 Mon Sep 17 00:00:00 2001 From: Cody Logan Date: Wed, 8 Jan 2020 09:36:51 -0800 Subject: Update docstrings --- alphanum/__init__.py | 2 +- 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' """ -- cgit v1.2.3