Skip to content

Commit b5ad816

Browse files
author
BrunoSilvaAndrade
committed
fix(api)!: Renaming classes and creating a default package object
BREAKING CHANGE: A class which provides the ConfigValue Object was not a good deal Now there's a default package object called configparser which gives a Config(old ConfigValue) object
1 parent 184dde5 commit b5ad816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyconfigparser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def values(self):
4141
return self.__dict__.values()
4242

4343

44-
class Configparser:
44+
class ConfigParser:
4545
def __init__(self):
4646
self.__instance = None
4747
self.__hold_an_instance = True
@@ -145,4 +145,4 @@ def __extract_env_variable_key(self, variable):
145145
return variable
146146

147147

148-
configparser = Configparser()
148+
configparser = ConfigParser()

0 commit comments

Comments
 (0)