16 lines
307 B
Python
16 lines
307 B
Python
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
|