Skip to content

Commit

Permalink
Deq
Browse files Browse the repository at this point in the history
  • Loading branch information
hweawer committed Aug 29, 2024
1 parent 566a4aa commit 90155aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/transport/msg_providers/data_bus.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import abc
import logging
from collections import deque
from enum import Enum
from typing import List, Optional

Expand Down Expand Up @@ -219,7 +220,7 @@ def __init__(self, message_schema: Schema, sinks: [DataBusSinks]):

self._STANDARD_OFFSET = 256
self._latest_block = -1
self._queue: List[LogReceipt] = []
self._queue: deque = deque()

logger.info('Data bus client initialized.')

Expand Down

0 comments on commit 90155aa

Please sign in to comment.