Island: Raise NotImplementedError in RepositoryService

This class is still under development.
This commit is contained in:
Mike Salvatore 2022-07-13 08:59:52 -04:00
parent 726f2bbaa2
commit 5283864c09
1 changed files with 6 additions and 3 deletions

View File

@ -28,10 +28,13 @@ class RepositoryService:
self._file_repository.delete_file(custom_pbas.windows_filename)
def unlock(self):
pass
raise NotImplementedError
def reset_key(self):
pass
raise NotImplementedError
def clear_simulation_data(self):
pass
# NOTE: This method will be replaced by an event when we implement pub/sub in the island.
# Different plugins and components will be able to register for the event and clear
# any configuration data they've collected.
raise NotImplementedError