Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/common/modules/contacts.py')
-rw-r--r--gajim/common/modules/contacts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gajim/common/modules/contacts.py b/gajim/common/modules/contacts.py
index fe8b4b4f7..151c2dbd8 100644
--- a/gajim/common/modules/contacts.py
+++ b/gajim/common/modules/contacts.py
@@ -421,8 +421,8 @@ class BareContact(CommonContact):
@property
def is_available(self) -> bool:
# pylint: disable=R1729
- return any([contact.is_available for contact
- in self._resources.values()])
+ return any(contact.is_available for contact
+ in self._resources.values())
@property
def show(self):