Updated the version, as missed in comit e3f9a01fb9

Versions are now saved as an class attribute
This commit is contained in:
2024-10-22 10:52:49 +02:00
parent 278e095d9d
commit c86b711e53
+2 -3
View File
@@ -5,9 +5,8 @@ from pathlib import Path
from shutil import copy
class Advanced_ConfigParser(configparser.ConfigParser):
"""Utility class to ease the use of the configparser libary
Version 1.0"""
"""Utility class to ease the use of the configparser libary"""
VERSION = "2.0"
number_of_instances = 0
def __init__(self, path:str, allow_template:bool = True) -> None: