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

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2021-11-03 02:36:13 +0300
committerlovetox <philipp@hoerist.com>2021-11-03 02:36:13 +0300
commitfe4b7e03f63581d1408bd5df389d6e22d2f5d783 (patch)
tree6065acda7f5bd5ae8032827a39d2e58277eae6ea
parentf020ac262222984cbf70c64a9c1e4a03db9efd5b (diff)
Structs: Inherit from NamedTuple
-rw-r--r--nbxmpp/structs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index 0f153df..7c81080 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -146,7 +146,7 @@ class HTTPAuthData(NamedTuple):
body: Optional[str]
-class StanzaIDData:
+class StanzaIDData(NamedTuple):
id: str
by: str