diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-06 15:46:32 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-09-06 15:46:32 +0200 |
| commit | 8252ecb385a745b55b0733a9180270d4bd298da4 (patch) | |
| tree | ff2c7f8db559b786f0f695338fc22ee5713ef99b | |
| parent | 0723d0d6dbb907eb9804b6586e108ce812dc8242 (diff) | |
Remove useless code
| -rw-r--r-- | esds/node.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/esds/node.py b/esds/node.py index 1cd5a1a..7fc62dc 100644 --- a/esds/node.py +++ b/esds/node.py @@ -200,9 +200,7 @@ class Node: ack=None while True: ack=self.rqueue.get() # Wait for simulator acknowledgments - if ack[0] == "plugin_notify": - self.plugin_notify(ack[1],ack[2]) # TODO: what is ack_types received before "plugin_notify" ? - elif ack[0] not in ack_types: + if ack[0] not in ack_types: ack_buffer.append(ack) else: break |
