Remove debug code

This commit is contained in:
Philipp Hörist 2018-12-30 20:44:59 +01:00
parent 0ad369dc97
commit d203d36f07
1 changed files with 1 additions and 3 deletions

View File

@ -69,8 +69,6 @@ class CommonContact(XMPPEntity):
@show.setter @show.setter
def show(self, value): def show(self, value):
if isinstance(value, str) and isinstance(self, GC_Contact):
breakpoint()
self._show = value self._show = value
@property @property
@ -218,7 +216,7 @@ class Contact(CommonContact):
from gajim.common import app from gajim.common import app
try: try:
return app.gc_connected[self.account.name][self.jid] return app.gc_connected[self.account.name][self.jid]
except Exception as error: except Exception:
return False return False
def is_transport(self): def is_transport(self):