gridparse 1.5.1__tar.gz → 1.5.2__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.
- {gridparse-1.5.1/gridparse.egg-info → gridparse-1.5.2}/PKG-INFO +1 -1
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse/grid_argument_parser.py +2 -2
- {gridparse-1.5.1 → gridparse-1.5.2/gridparse.egg-info}/PKG-INFO +1 -1
- {gridparse-1.5.1 → gridparse-1.5.2}/pyproject.toml +1 -1
- {gridparse-1.5.1 → gridparse-1.5.2}/setup.py +1 -1
- {gridparse-1.5.1 → gridparse-1.5.2}/LICENSE +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/MANIFEST.in +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/README.md +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse/__init__.py +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse/utils.py +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse.egg-info/SOURCES.txt +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse.egg-info/dependency_links.txt +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse.egg-info/requires.txt +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/gridparse.egg-info/top_level.txt +0 -0
- {gridparse-1.5.1 → gridparse-1.5.2}/setup.cfg +0 -0
@@ -14,7 +14,7 @@ class AuxArgumentParser(argparse.ArgumentParser):
|
|
14
14
|
|
15
15
|
def parse_known_args(
|
16
16
|
self, args=None, namespace=None
|
17
|
-
) -> Tuple[argparse.Namespace, List[str]
|
17
|
+
) -> Tuple[argparse.Namespace, List[str]]:
|
18
18
|
"""Overwritten to collect the argument names that
|
19
19
|
are specified in the command line."""
|
20
20
|
if args is None:
|
@@ -61,7 +61,7 @@ class AuxArgumentParser(argparse.ArgumentParser):
|
|
61
61
|
|
62
62
|
def _parse_known_args(
|
63
63
|
self, arg_strings, namespace
|
64
|
-
) -> Tuple[List[argparse.Namespace], List[str]
|
64
|
+
) -> Tuple[List[argparse.Namespace], List[str]]:
|
65
65
|
"""Overwritten to collect the argument names that
|
66
66
|
are specified in the command line."""
|
67
67
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|