| Total Complexity | 4 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | # Author: Simon Blanke |
||
| 2 | # Email: [email protected] |
||
| 3 | # License: MIT License |
||
| 4 | |||
| 5 | |||
| 6 | class DictClass: |
||
| 7 | def __init__(self): |
||
| 8 | self.para_dict = {} |
||
| 9 | |||
| 10 | def __getitem__(self, key): |
||
| 11 | return self.para_dict[key] |
||
| 12 | |||
| 13 | def keys(self): |
||
| 14 | return self.para_dict.keys() |
||
| 15 | |||
| 16 | def values(self): |
||
| 17 | return self.para_dict.values() |
||
| 18 |