We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a99ec commit 6959133Copy full SHA for 6959133
config/config/config.py
@@ -135,6 +135,30 @@ def __iter__(self):
135
"""
136
return iter(self._config)
137
138
+ def keys(self):
139
+ """
140
+ Get the configuration keys.
141
+
142
+ :return: Configuration keys.
143
144
+ return self._config.keys()
145
146
+ def values(self):
147
148
+ Get the configuration values.
149
150
+ :return: Configuration values.
151
152
+ return self._config.values()
153
154
+ def items(self):
155
156
+ Get the configuration items.
157
158
+ :return: Configuration items.
159
160
+ return self._config.items()
161
162
def __len__(self) -> int:
163
164
Get the number of configuration items.
0 commit comments