From a4e7b66f9516e3f54693c3f55fefc31ece9f28f0 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Mon, 28 Apr 2025 12:21:49 +0200 Subject: [PATCH] Test relative imports --- RoboidControl/ParticipantUDP.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RoboidControl/ParticipantUDP.py b/RoboidControl/ParticipantUDP.py index acb0cf2..2897f98 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 .Participant import Participant +from .Thing import Thing from Messages.ParticipantMsg import ParticipantMsg from Messages.NetworkIdMsg import NetworkIdMsg from Messages.ThingMsg import ThingMsg