(self, capacity)
| 138 | class ReplayMemory(object): |
| 139 | |
| 140 | def __init__(self, capacity): |
| 141 | self.memory = deque([], maxlen=capacity) |
| 142 | |
| 143 | def push(self, *args): |
| 144 | """Save a transition""" |
nothing calls this directly
no outgoing calls
no test coverage detected