From c86b711e5323a5e58b2d88e21400339ebcc14300 Mon Sep 17 00:00:00 2001 From: Cromatin Date: Tue, 22 Oct 2024 10:52:49 +0200 Subject: [PATCH] Updated the version, as missed in comit e3f9a01fb9d82bf26aabe94b4397844d14976425 Versions are now saved as an class attribute --- src/utils/adv_configparser.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/utils/adv_configparser.py b/src/utils/adv_configparser.py index c0c56db..b1ddbc8 100644 --- a/src/utils/adv_configparser.py +++ b/src/utils/adv_configparser.py @@ -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: