| 65 | |
| 66 | |
| 67 | class CustomDict(dict): |
| 68 | def __iter__(self): |
| 69 | return list(super().__iter__()).__iter__() |
| 70 | |
| 71 | class ColorObjectRuntime(GenericRuntime): |
| 72 | GLOBAL_DICT = {'dict': CustomDict} |
nothing calls this directly
no outgoing calls
no test coverage detected