Skip to content

Commit

Permalink
change attribute declaration order
Browse files Browse the repository at this point in the history
  • Loading branch information
mourginakis committed Oct 16, 2023
1 parent 7fbfb8a commit 246891a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node_monitor/node_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ def __init__(
node_provider_id, but only including node_providers that are
subscribed to alerts.
"""
self.node_provider_db = node_provider_db
self.email_bot = email_bot
self.slack_bot = slack_bot
self.telegram_bot = telegram_bot
self.node_provider_db = node_provider_db
self.snapshots: Deque[ic_api.Nodes] = deque(maxlen=3)
self.last_update: float | None = None
self.last_status_report: float = 0
Expand Down

0 comments on commit 246891a

Please sign in to comment.