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:
@@ -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,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,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
|
||||
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import sys, os; sys.path.append(os.getcwd())
|
||||
|
||||
from src.config_parser import Configuration
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user