(self)
| 8 | |
| 9 | class ResourceManager: |
| 10 | def __init__(self): |
| 11 | self.usage = {"satellites": {}, "ground_stations": {}, "geo_relays": {}} |
| 12 | self.time_pool = {"satellites": {}, "ground_stations": {}, "geo_relays": {}} |
| 13 | |
| 14 | def init_pools(self, leo_sats, all_gs, geo_relays): |
| 15 | self.time_pool = { |
nothing calls this directly
no outgoing calls
no test coverage detected