File tree 2 files changed +4
-4
lines changed
bitbots_team_communication
bitbots_team_communication
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
from bitbots_team_communication .converter .robocup_protocol_converter import RobocupProtocolConverter , TeamColor
28
28
29
29
30
- class HumanoidLeagueTeamCommunication :
30
+ class TeamCommunication :
31
31
def __init__ (self ):
32
32
self ._package_path = get_package_share_directory ("bitbots_team_communication" )
33
33
self .node = Node ("team_comm" , automatically_declare_parameters_from_overrides = True )
@@ -240,7 +240,7 @@ def get_current_time(self) -> Time:
240
240
241
241
def main ():
242
242
rclpy .init (args = None )
243
- HumanoidLeagueTeamCommunication ()
243
+ TeamCommunication ()
244
244
245
245
246
246
if __name__ == "__main__" :
Original file line number Diff line number Diff line change 22
22
23
23
import bitbots_team_communication .robocup_extension_pb2 as Proto # noqa: N812
24
24
from bitbots_msgs .msg import Strategy
25
- from bitbots_team_communication .bitbots_team_communication import HumanoidLeagueTeamCommunication
25
+ from bitbots_team_communication .bitbots_team_communication import TeamCommunication
26
26
from bitbots_team_communication .converter .robocup_protocol_converter import RobocupProtocolConverter , TeamColor
27
27
28
28
own_team_id = 1
@@ -305,7 +305,7 @@ def state_with_gamestate(state):
305
305
306
306
@pytest .fixture
307
307
def state ():
308
- state = Mock (HumanoidLeagueTeamCommunication )
308
+ state = Mock (TeamCommunication )
309
309
state .player_id = 2
310
310
state .team_id = own_team_id
311
311
state .gamestate = None
You can’t perform that action at this time.
0 commit comments