Skip to content
Snippets Groups Projects
Commit 705153cc authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Add some argument checking

parent 29ba010e
No related branches found
No related tags found
1 merge request!227Add some argument checking
Pipeline #90274 passed
...@@ -33,6 +33,9 @@ def sfg_to_python( ...@@ -33,6 +33,9 @@ def sfg_to_python(
True if printing a schedule. True if printing a schedule.
""" """
if not isinstance(sfg, SFG):
raise TypeError("An SFG must be provided")
_type = "Schedule" if schedule else "SFG" _type = "Schedule" if schedule else "SFG"
result = ( result = (
...@@ -139,7 +142,7 @@ def sfg_to_python( ...@@ -139,7 +142,7 @@ def sfg_to_python(
def python_to_sfg(path: str) -> Tuple[SFG, Dict[str, Tuple[int, int]]]: def python_to_sfg(path: str) -> Tuple[SFG, Dict[str, Tuple[int, int]]]:
""" """
Given a serialized file try to deserialize it and load it to the library. Given a serialized file, try to deserialize it and load it to the library.
Parameters Parameters
========== ==========
...@@ -167,6 +170,8 @@ def schedule_to_python(schedule: Schedule) -> str: ...@@ -167,6 +170,8 @@ def schedule_to_python(schedule: Schedule) -> str:
schedule : Schedule schedule : Schedule
The schedule to serialize. The schedule to serialize.
""" """
if not isinstance(schedule, Schedule):
raise TypeError("A Schedule must be provided")
sfg_name = ( sfg_name = (
schedule.sfg.name.replace(" ", "_").replace("-", "_") schedule.sfg.name.replace(" ", "_").replace("-", "_")
if schedule.sfg.name if schedule.sfg.name
......
...@@ -83,6 +83,9 @@ class Schedule: ...@@ -83,6 +83,9 @@ class Schedule:
laps: Optional[Dict[GraphID, int]] = None, laps: Optional[Dict[GraphID, int]] = None,
): ):
"""Construct a Schedule from an SFG.""" """Construct a Schedule from an SFG."""
if not isinstance(sfg, SFG):
raise TypeError("An SFG must be provided")
self._original_sfg = sfg() # Make a copy self._original_sfg = sfg() # Make a copy
self._sfg = sfg self._sfg = sfg
self._start_times = {} self._start_times = {}
......
...@@ -59,6 +59,9 @@ class Simulation: ...@@ -59,6 +59,9 @@ class Simulation:
input_providers: Optional[Sequence[Optional[InputProvider]]] = None, input_providers: Optional[Sequence[Optional[InputProvider]]] = None,
): ):
"""Construct a Simulation of an SFG.""" """Construct a Simulation of an SFG."""
if not isinstance(sfg, SFG):
raise TypeError("An SFG must be provided")
# Copy the SFG to make sure it's not modified from the outside. # Copy the SFG to make sure it's not modified from the outside.
self._sfg = sfg() self._sfg = sfg()
self._results = defaultdict(list) self._results = defaultdict(list)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment