Commit aa0cb6a7 authored by Jonas Kaufmann's avatar Jonas Kaufmann
Browse files

orchestration/simulation/base: fix pytype error by making Simulator inherit from ABC

parent c9167cd3
......@@ -38,7 +38,7 @@ if tp.TYPE_CHECKING:
)
class Simulator(utils_base.IdObj):
class Simulator(utils_base.IdObj, abc.ABC):
"""Base class for all simulators."""
def __init__(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment