From 105fcaecf40c6e7ed7460d5698eb95f0f7a653e3 Mon Sep 17 00:00:00 2001 From: Marek Wolan Date: Sun, 9 Jul 2023 18:07:21 +0100 Subject: [PATCH] Removed comment --- src/primaite/agents/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/primaite/agents/utils.py b/src/primaite/agents/utils.py index b5a3c673..acc70cc4 100644 --- a/src/primaite/agents/utils.py +++ b/src/primaite/agents/utils.py @@ -165,7 +165,6 @@ def transform_change_obs_readable(obs): os_states = [SoftwareState(i).name for i in obs[:, 2]] new_obs = [ids, operating_states, os_states] - # changed range(3,...) to range(4,...) because we added file system which was new since ADSP for service in range(4, obs.shape[1]): # Links bit/s don't have a service state service_states = [SoftwareState(i).name if i <= 4 else i for i in obs[:, service]]