diff options
| author | Scott Gasch <[email protected]> | 2021-09-23 09:40:48 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-09-23 09:40:48 -0700 |
| commit | 4a65828d3cabb98cd26b78f32255778fb01fb8fc (patch) | |
| tree | cd717997cdc74d4a9b9937fd5083c8c6b3d99bfd /argparse_utils.py | |
| parent | 075c18063826d36377aa8d46fba66f71fcf37d20 (diff) | |
Fixup argparse_utils' doctest and tweak test runner.
Diffstat (limited to 'argparse_utils.py')
| -rw-r--r-- | argparse_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/argparse_utils.py b/argparse_utils.py index 2d2297c..530690c 100644 --- a/argparse_utils.py +++ b/argparse_utils.py @@ -242,7 +242,7 @@ def valid_duration(txt: str) -> datetime.timedelta: datetime.timedelta(seconds=180) >>> valid_duration('your mom') - datetime.timedelta(seconds=0) + datetime.timedelta(0) """ from datetime_utils import parse_duration |
