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

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'omemo/modules/events.py')
-rw-r--r--omemo/modules/events.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/omemo/modules/events.py b/omemo/modules/events.py
deleted file mode 100644
index fe394d4..0000000
--- a/omemo/modules/events.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# This file is part of OMEMO Gajim Plugin.
-#
-# OMEMO Gajim Plugin is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; version 3 only.
-#
-# OMEMO Gajim Plugin is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with OMEMO Gajim Plugin. If not, see <http://www.gnu.org/licenses/>.
-
-from __future__ import annotations
-
-from typing import Any
-
-from dataclasses import dataclass
-from dataclasses import field
-
-from gajim.common.events import ApplicationEvent
-
-
-@dataclass
-class OMEMONewFingerprint(ApplicationEvent):
- name: str = field(init=False, default='omemo-new-fingerprint')
- chat_control: Any