diff options
Diffstat (limited to 'candle-pyo3/py_src/candle/nn/container.py')
-rw-r--r-- | candle-pyo3/py_src/candle/nn/container.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/candle-pyo3/py_src/candle/nn/container.py b/candle-pyo3/py_src/candle/nn/container.py index 6ece31b6..963a8a4a 100644 --- a/candle-pyo3/py_src/candle/nn/container.py +++ b/candle-pyo3/py_src/candle/nn/container.py @@ -57,12 +57,10 @@ class Sequential(Module): _modules: Dict[str, Module] # type: ignore[assignment] @overload - def __init__(self, *args: Module) -> None: - ... + def __init__(self, *args: Module) -> None: ... @overload - def __init__(self, arg: "OrderedDict[str, Module]") -> None: - ... + def __init__(self, arg: "OrderedDict[str, Module]") -> None: ... def __init__(self, *args): super().__init__() |