Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
roo-oliv committed Aug 5, 2024
1 parent 01a2c2d commit d0fa94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ and designed for Humans.
def __init__(
self,
database: Annotated[Database, Autowired],
message_brokers: Annotated[List[Broker], Autowired],
brokers: Annotated[List[Broker], Autowired],
):
pending = database.get_pending_messages()
for broker in message_brokers:
for broker in brokers:
broker.send_pending(pending)

.. code:: python
Expand Down

0 comments on commit d0fa94e

Please sign in to comment.