From 0f24b4a646ae65bc7b1e4afc230133a759dadd06 Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Thu, 19 Oct 2023 15:34:46 +0100 Subject: [PATCH] Remove broken import --- src/primaite/game/session.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/primaite/game/session.py b/src/primaite/game/session.py index bd5e18d6..adb9f7b5 100644 --- a/src/primaite/game/session.py +++ b/src/primaite/game/session.py @@ -1,6 +1,6 @@ """PrimAITE session - the main entry point to training agents on PrimAITE.""" from ipaddress import IPv4Address -from typing import Any, Dict, List, Never, Optional, Tuple +from typing import Any, Dict, List, Optional, Tuple from arcd_gate.client.gate_client import ActType, GATEClient from gymnasium import spaces @@ -187,7 +187,7 @@ class PrimaiteSession: self.gate_client: PrimaiteGATEClient = PrimaiteGATEClient(self) """Reference to a GATE Client object, which will send data to GATE service for training RL agent.""" - def start_session(self) -> Never: + def start_session(self) -> None: """Commence the training session, this gives the GATE client control over the simulation/agent loop.""" self.gate_client.start()