From 10c9c68c6c25c0c6347357da3fa98df2b7c5a0fc Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Sun, 6 Apr 2025 12:13:16 +0200 Subject: [PATCH] Moved SiteServer --- SiteServer.py => Participants/SiteServer.py | 0 README.md | 4 +--- __init__.py | 7 +------ 3 files changed, 2 insertions(+), 9 deletions(-) rename SiteServer.py => Participants/SiteServer.py (100%) diff --git a/SiteServer.py b/Participants/SiteServer.py similarity index 100% rename from SiteServer.py rename to Participants/SiteServer.py diff --git a/README.md b/README.md index 19bec6e..fb83844 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,5 @@ Supporting: # Basic components - - \ref RoboidControl::Thing::Thing "Thing" -- \ref RoboidControl::LocalParticipant::LocalParticipant "LocalParticipant" -- \ref RoboidControl::SiteServer::SiteServer "SiteServer" \ No newline at end of file +- \ref RoboidControl::ParticipantUDP::ParticipantUDP "ParticipantUDP" diff --git a/__init__.py b/__init__.py index 5952521..f92525e 100644 --- a/__init__.py +++ b/__init__.py @@ -1,10 +1,5 @@ __all__ = ['Thing', - 'ParticipantUDP', - 'SiteServer'] + 'ParticipantUDP'] -from .LinearAlgebra.Direction import Direction from .ParticipantUDP import ParticipantUDP from .Thing import Thing -from .LinearAlgebra.Spherical import Spherical -from .LinearAlgebra.SwingTwist import SwingTwist -from .SiteServer import SiteServer \ No newline at end of file