lockss-pybasic 0.1.0.dev20__tar.gz → 0.1.0.dev21__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lockss-pybasic
3
- Version: 0.1.0.dev20
3
+ Version: 0.1.0.dev21
4
4
  Summary: Basic Python utilities
5
5
  License: BSD-3-Clause
6
6
  Author: Thib Guicherd-Callin
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lockss-pybasic"
3
- version = "0.1.0-dev20"
3
+ version = "0.1.0-dev21"
4
4
  description = "Basic Python utilities"
5
5
  authors = [
6
6
  { name = "Thib Guicherd-Callin", email = "thib@cs.stanford.edu" }
@@ -36,4 +36,4 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36
36
  POSSIBILITY OF SUCH DAMAGE.
37
37
  '''.strip()
38
38
 
39
- __version__ = '0.1.0-dev20'
39
+ __version__ = '0.1.0-dev21'
@@ -32,12 +32,11 @@
32
32
  Command line utilities.
33
33
  """
34
34
 
35
- from argparse import _A
36
35
  from collections.abc import Callable
37
36
  import sys
38
37
  from typing import Any, Dict, Generic, Optional, TypeVar
39
38
 
40
- from pydantic.v1 import BaseModel, Field
39
+ from pydantic.v1 import BaseModel
41
40
  from pydantic_argparse import ArgumentParser
42
41
  from rich_argparse import RichHelpFormatter
43
42
 
@@ -101,7 +100,7 @@ class BaseCli(Generic[BaseModelT]):
101
100
  ``prog`` and ``description`` from the constructor keyword
102
101
  arguments in ``self.parser``.
103
102
 
104
- * Stores the Pydantic-Argparse parsed arguemnts in ``self.args``.
103
+ * Stores the Pydantic-Argparse parsed arguments in ``self.args``.
105
104
 
106
105
  * Calls ``dispatch()``.
107
106