Skip to content

Commit

Permalink
⚫ Fade to black.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 9, 2020
1 parent 59fc1b3 commit 71891ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions irc/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def __init__(
realname,
reconnection_interval=missing,
recon=ExponentialBackoff(),
**connect_params
**connect_params,
):
super(SingleServerIRCBot, self).__init__()
self.__connect_params = connect_params
Expand Down Expand Up @@ -198,7 +198,7 @@ def _connect(self):
self._nickname,
server.password,
ircname=self._realname,
**self.__connect_params
**self.__connect_params,
)
except irc.client.ServerConnectionError:
pass
Expand Down

0 comments on commit 71891ea

Please sign in to comment.