From 9ee7695030bde033fd87656727140e1970799e07 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Mon, 28 Apr 2025 12:23:01 +0200 Subject: [PATCH] Test Absolute imports --- RoboidControl/ParticipantUDP.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RoboidControl/ParticipantUDP.py b/RoboidControl/ParticipantUDP.py index 2897f98..0e217ad 100644 --- a/RoboidControl/ParticipantUDP.py +++ b/RoboidControl/ParticipantUDP.py @@ -2,8 +2,8 @@ import socket import threading import time -from .Participant import Participant -from .Thing import Thing +from RoboidControl.Participant import Participant +from RoboidControl.Thing import Thing from Messages.ParticipantMsg import ParticipantMsg from Messages.NetworkIdMsg import NetworkIdMsg from Messages.ThingMsg import ThingMsg