from typing import List from .image import Image from .method import Method class Container: __slots__ = ('image', 'methods', ) image: Image methods: List[Method] def __init__(self, image: Image, methods: List[Method]) -> None: self.image = image self.methods = methods