-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from vroncevic/dev
Updated ATS CLI mechanism, docs
- Loading branch information
Showing
143 changed files
with
174 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
|
||
import sys | ||
from typing import Any, List, Optional, Sequence, TypeAlias, Union | ||
from os.path import basename | ||
from argparse import Namespace | ||
from abc import abstractmethod | ||
|
||
|
@@ -40,7 +41,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
@@ -85,8 +86,8 @@ def __init__( | |
:type verbose: <bool> | ||
:exceptions: None | ||
''' | ||
self._config: Config = self._builder(info_file, verbose) | ||
self._operational: bool = False | ||
self._config: Config = self._builder(info_file, verbose) | ||
self._verbose: bool = verbose | ||
verbose_message(self._verbose, ['init ATS CFG cli']) | ||
|
||
|
@@ -107,7 +108,7 @@ def _builder( | |
cli_config: Config = None | ||
if not info_file: | ||
return cli_config | ||
file_format: str = info_file.split('.')[1] | ||
file_format: str = basename(info_file).split('.')[1] | ||
match file_format: | ||
case 'cfg': | ||
cli_config = CfgBase(info_file, verbose) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ | |
__copyright__ = '(C) 2024, https://vroncevic.github.io/ats_utilities' | ||
__credits__: List[str] = ['Vladimir Roncevic', 'Python Software Foundation'] | ||
__license__ = 'https://github.com/vroncevic/ats_utilities/blob/dev/LICENSE' | ||
__version__ = '3.3.1' | ||
__version__ = '3.3.2' | ||
__maintainer__ = 'Vladimir Roncevic' | ||
__email__ = '[email protected]' | ||
__status__ = 'Updated' | ||
|
Oops, something went wrong.