From 6989948c40e51ed82589e42cf2be68fbe8902f43 Mon Sep 17 00:00:00 2001 From: Aareon Sullivan Date: Tue, 10 Jun 2025 13:28:13 -0500 Subject: [PATCH] Fix undefined Reticulum variable reference in Link.py Resolve Pylance error where "Reticulum" is not defined on line 195. The variable should be referenced as RNS.Reticulum since only the RNS module is imported, not the Reticulum class directly. --- RNS/Link.py | 1 + 1 file changed, 1 insertion(+) diff --git a/RNS/Link.py b/RNS/Link.py index f65ce12..3b12dc2 100644 --- a/RNS/Link.py +++ b/RNS/Link.py @@ -31,6 +31,7 @@ from RNS.Cryptography import X25519PrivateKey, X25519PublicKey, Ed25519PrivateKey, Ed25519PublicKey from RNS.Cryptography import Token from RNS.Channel import Channel, LinkChannelOutlet +from RNS import Reticulum from time import sleep from .vendor import umsgpack as umsgpack