| 56 | |
| 57 | |
| 58 | class CustomDict(dict): |
| 59 | def __iter__(self): |
| 60 | return list(super().__iter__()).__iter__() |
| 61 | |
| 62 | class ColorObjectRuntime(GenericRuntime): |
| 63 | GLOBAL_DICT = {'dict': CustomDict} |
nothing calls this directly
no outgoing calls
no test coverage detected