Clear up one TODO and update comments on some more

This commit is contained in:
Ian Renton
2026-06-20 08:33:00 +01:00
parent 20966cc7cf
commit 1e42c69b78
3 changed files with 11 additions and 10 deletions

View File

@@ -71,5 +71,6 @@ class HEMA(HTTPSpotProvider):
return sig == "HEMA"
def submit_spot(self, spot, credentials):
# TODO: Implement. Spotting to HEMA is covered in the original email from the team.
# TODO: Implement. Currently blocked awaiting their API team to make a change to allow us to spot with a
# reference and not a reference *number*.
raise NotImplementedError("HEMA upstream spot submission is not yet implemented")

View File

@@ -43,5 +43,6 @@ class WWFF(HTTPSpotProvider):
return sig == "WWFF"
def submit_spot(self, spot, credentials):
# TODO: Implement. Spotting to WWFF should be possible, need to look up the Spotline docs or copy approach from PoLo. Either way I think we need an API key for the app (but maybe not for the user?)
# TODO: Implement. Spotting to WWFF should be possible, need to look up the Spotline docs or copy approach from
# PoLo. Either way I think we need an API key for the app (but maybe not for the user?)
raise NotImplementedError("WWFF upstream spot submission is not yet implemented")