@@ -15,7 +15,7 @@ class contributors_manager(ABC):
Each derived class needs to implement the method setup_contributors_endpoint_for_metadata.
A processing of the timeseries IDs can be done by the _do_add_timeseries_id method, which also has to add the result to the timeseriesIDs set.
"""
def__init__(self,requestID):
def__init__(self,requestID:int):
self.requestID=requestID
self.contributors=set()
defadd_timeseries_id(self,id:int)->None:
...
...
@@ -43,7 +43,7 @@ class contributions_manager_by_id(contributors_manager):
The future plan is to run toargridding as a service. Then the request ID will be provided as a unique identify to retrieve the contributors from a database.