Spaces:
Runtime error
Runtime error
File size: 286 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from typing import Optional, Union, List
from phi.k8s.app.superset.base import SupersetBase
class SupersetInit(SupersetBase):
# -*- App Name
name: str = "superset-init"
# Command for the container
entrypoint: Optional[Union[str, List]] = "/scripts/init-superset.sh"
|