(self)
| 117 | self.quota_consumed = 0 |
| 118 | |
| 119 | def __repr__(self): |
| 120 | return ( |
| 121 | f"NewBucket(max_quota={self.max_quota}, " |
| 122 | f"quota_consumed={self.quota_consumed})" |
| 123 | ) |
| 124 | |
| 125 | |
| 126 | print("Example 8") |
nothing calls this directly
no outgoing calls
no test coverage detected