# HG changeset patch # User Goffi # Date 1632667114 -7200 # Node ID b02fb5fcaa30a0d66fe5920b2084bdd3e963d81a # Parent 2cbecbb52b721fb60ca97f588e99c1758f1a3c29 core (core_types): add `jid` to `SatXMPPEntity` diff -r 2cbecbb52b72 -r b02fb5fcaa30 sat/core/core_types.py --- a/sat/core/core_types.py Wed Sep 08 18:00:02 2021 +0200 +++ b/sat/core/core_types.py Sun Sep 26 16:38:34 2021 +0200 @@ -16,6 +16,9 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . +from twisted.words.protocols.jabber import jid as t_jid + class SatXMPPEntity: - pass + + jid: t_jid.JID