(self, attr)
| 98 | self.meters[k].update(v) |
| 99 | |
| 100 | def __getattr__(self, attr): |
| 101 | if attr in self.meters: |
| 102 | return self.meters[attr] |
| 103 | if attr in self.__dict__: |
| 104 | return self.__dict__[attr] |
| 105 | raise AttributeError("'{}' object has no attribute '{}'".format(type(self).__name__, attr)) |
| 106 | |
| 107 | def __str__(self): |
| 108 | loss_str = [] |
nothing calls this directly
no outgoing calls
no test coverage detected