Island: Add missing return typehint to get_simulation()

This commit is contained in:
Mike Salvatore 2022-07-01 09:41:19 -04:00
parent 55eb9b39a2
commit a18b5ef9b7
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class ISimulationRepository(ABC):
pass
@abstractmethod
def get_simulation(self):
def get_simulation(self) -> Simulation:
pass
@abstractmethod