Skip to content

Commit 184dde5

Browse files
author
BrunoSilvaAndrade
committed
fix(api)!: Renaming classes and creating a default package object
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 dbda244 commit 184dde5

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)