Remove debug code
This commit is contained in:
parent
0ad369dc97
commit
d203d36f07
|
@ -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):
|
||||||
|
|
Loading…
Reference in New Issue