Additional absolute imports

This commit is contained in:
Pascal Serrarens 2025-04-28 12:33:43 +02:00
parent 9ee7695030
commit f545b6d884
2 changed files with 11 additions and 11 deletions

View File

@ -4,12 +4,12 @@ import time
from RoboidControl.Participant import Participant from RoboidControl.Participant import Participant
from RoboidControl.Thing import Thing from RoboidControl.Thing import Thing
from Messages.ParticipantMsg import ParticipantMsg from RoboidControl.Messages.ParticipantMsg import ParticipantMsg
from Messages.NetworkIdMsg import NetworkIdMsg from RoboidControl.Messages.NetworkIdMsg import NetworkIdMsg
from Messages.ThingMsg import ThingMsg from RoboidControl.Messages.ThingMsg import ThingMsg
from Messages.NameMsg import NameMsg from RoboidControl.Messages.NameMsg import NameMsg
from Messages.ModelUrlMsg import ModelUrlMsg from RoboidControl.Messages.ModelUrlMsg import ModelUrlMsg
from Messages import * from RoboidControl.Messages import *
import sys import sys
micropython = 'micropython' in sys.modules micropython = 'micropython' in sys.modules

View File

@ -1,8 +1,8 @@
from ParticipantUDP import ParticipantUDP from RoboidControl.ParticipantUDP import ParticipantUDP
from Messages.ParticipantMsg import ParticipantMsg from RoboidControl.Messages.ParticipantMsg import ParticipantMsg
from Messages.NetworkIdMsg import NetworkIdMsg from RoboidControl.Messages.NetworkIdMsg import NetworkIdMsg
from Things.TemperatureSensor import TemperatureSensor from RoboidControl.Things.TemperatureSensor import TemperatureSensor
from Thing import Thing from RoboidControl.Thing import Thing
import socket import socket
import threading import threading