File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -26,3 +26,10 @@ def fun(f):
26
26
return r_value
27
27
28
28
return fun
29
+
30
+ def get_value (self , value : str ):
31
+ values = value .split ("." )
32
+ r_value = None
33
+ for v in values :
34
+ r_value = self .config [v ] if r_value is None else r_value [v ]
35
+ return r_value
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = Yaml8
3
- version = 0.1.1
3
+ version = 0.1.2
4
4
author = AppDevIn Sliver
5
5
author_email = teamprojectlive@example.com
6
6
description = Python package to make getting yaml easier and cleaner
Original file line number Diff line number Diff line change 6
6
7
7
setuptools .setup (
8
8
name = "Yaml8" ,
9
- version = "0.1.1 " ,
9
+ version = "0.1.2 " ,
10
10
author = "AppDevIn Sliver" ,
11
11
author_email = " teamprojectlive@example.com" ,
12
12
description = "Python package to make getting yaml easier and cleaner" ,
You can’t perform that action at this time.
0 commit comments