| Conditions | 2 | 
| Total Lines | 15 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | """  | 
            ||
| 44 | @staticmethod  | 
            ||
| 45 | def get(group_name: str, object_id: str) -> dict:  | 
            ||
| 46 | """  | 
            ||
| 47 | Returns the value of object_id.  | 
            ||
| 48 | If the object doesn't exists an empty dict will returned  | 
            ||
| 49 | |||
| 50 | :param group_name: str  | 
            ||
| 51 | :param object_id: str  | 
            ||
| 52 | :return: dict  | 
            ||
| 53 | """  | 
            ||
| 54 | |||
| 55 | if group_name not in DataCaching.__cache:  | 
            ||
| 56 |             return {} | 
            ||
| 57 | |||
| 58 |         return DataCaching.__cache[group_name].get(object_id, {}) | 
            ||
| 59 | |||
| 75 |