Skip to content
Snippets Groups Projects
Commit 2d958a0d authored by Jakub Ziebinski's avatar Jakub Ziebinski
Browse files

Fix bug in is_accounts_node_data_available property

parent 231c095b
No related branches found
No related tags found
2 merge requests!399V1.27.5.12 release,!367Implementation of alarm management
......@@ -212,6 +212,10 @@ class ProfileData(Context):
@property
def is_accounts_node_data_available(self) -> bool:
tracked_account = self.get_tracked_accounts()
if not tracked_account:
return False
return all(account.is_node_data_available for account in self.get_tracked_accounts())
@classmethod
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment