Skip to content

Commit

Permalink
Merge pull request #167 from vroncevic/dev
Browse files Browse the repository at this point in the history
Updated ATS CLI mechanism, docs
  • Loading branch information
vroncevic authored Jul 7, 2024
2 parents b7a9c1f + c47669f commit 289771b
Show file tree
Hide file tree
Showing 143 changed files with 174 additions and 171 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ Framework structure
|------|-------|------|-------|
| `ats_utilities/__init__.py` | 0 | 0 | 100%|
| `ats_utilities/checker/__init__.py` | 73 | 23 | 68%|
| `ats_utilities/cli/__init__.py` | 61 | 16 | 74%|
| `ats_utilities/cli/__init__.py` | 62 | 16 | 74%|
| `ats_utilities/config_io/__init__.py` | 58 | 2 | 97%|
| `ats_utilities/config_io/cfg/__init__.py` | 46 | 3 | 93%|
| `ats_utilities/config_io/cfg/cfg2object.py` | 46 | 3 | 93%|
Expand Down Expand Up @@ -243,7 +243,7 @@ Framework structure
| `ats_utilities/splash/progress_bar.py` | 44 | 2 | 95%|
| `ats_utilities/splash/splash_property.py` | 39 | 3 | 92%|
| `ats_utilities/splash/terminal_properties.py` | 51 | 3 | 94%|
| **Total** | 1960 | 263 | 87% |
| **Total** | 1961 | 263 | 87% |

### Docs

Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/checker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
7 changes: 4 additions & 3 deletions ats_utilities/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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'
Expand Down Expand Up @@ -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'])

Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/cfg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/cfg/cfg2object.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/cfg/object2cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/file_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/ini/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/ini/ini2object.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/ini/object2ini.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/json/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/json/json2object.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/json/object2json.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/xml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/xml/object2xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/xml/xml2object.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/yaml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/yaml/object2yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/config_io/yaml/yaml2object.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/console_io/error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/console_io/success.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/console_io/verbose.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/console_io/warning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_attribute_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_bad_call_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_file_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_key_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_lookup_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_parameter_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_type_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/exceptions/ats_value_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/ats_build_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/ats_info_ok.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/ats_licence.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/ats_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/info/ats_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion ats_utilities/logging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading

0 comments on commit 289771b

Please sign in to comment.