Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
loRes228 committed Feb 3, 2024
1 parent 9c2a1a3 commit 37f9345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiogram_broadcaster/broadcaster.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(
context_key: str = "broadcaster",
run_on_startup: bool = False,
event_logging: bool = True,
aut0_setup: bool = True,
auto_setup: bool = True,
) -> None:
self.bot = bot
self.dispatcher = dispatcher
Expand All @@ -54,7 +54,7 @@ def __init__(
)
if event_logging:
setup_event_logging(event=self.event)
if aut0_setup:
if auto_setup:
self.setup()

def __getitem__(self, item: int) -> Mailer:
Expand Down

0 comments on commit 37f9345

Please sign in to comment.