geändert: src/config_parser/ini.py

geändert:       src/config_parser/json.py
	geändert:       src/config_parser/parse/json.py
	geändert:       tests/test_configuration_class.py
This commit is contained in:
2026-02-07 15:38:37 +01:00
parent 467d0418ff
commit a1c1d2b975
4 changed files with 2 additions and 9 deletions
-2
View File
@@ -1,5 +1,3 @@
import sys, os; sys.path = [os.path.dirname(__file__)] + sys.path
import typing
from ._configuration import Configuration
from .parse.ini import COMMENT_PREFIXES, QUOTATION_MARKS, parse_ini
+1 -4
View File
@@ -1,8 +1,5 @@
import sys, os; sys.path = [os.path.dirname(__file__)] + sys.path
import typing
from ._configuration import Configuration
from .parse.json import parse_json, parse_type, JSONObject, JSONString, JSONNumber, JSONNull, JSONBoolean, JSONArray
from .parse.json import parse_type, JSONObject, JSONString, JSONNumber, JSONNull, JSONBoolean, JSONArray
from .exceptions import JSONTypeError
def _configuration(data):
+1 -1
View File
@@ -1,4 +1,4 @@
from ..exceptions import EscapeSequenceSyntaxError, JSONValueSyntaxError, JSONNumberSyntaxError, JSONStringSyntaxError, JSONBooleanSyntaxError, JSONNullSyntaxError, JSONArraySyntaxError, JSONObjectSyntaxError, JSONTypeError
from ..exceptions import EscapeSequenceSyntaxError, JSONValueSyntaxError, JSONNumberSyntaxError, JSONStringSyntaxError, JSONBooleanSyntaxError, JSONNullSyntaxError, JSONArraySyntaxError, JSONObjectSyntaxError
import typing
import re
-2
View File
@@ -1,5 +1,3 @@
import sys, os; sys.path.append(os.getcwd())
from src.config_parser import Configuration