File size: 147 Bytes
df1fe5f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from abc import ABC


class SandboxApiBase(ABC):

    @staticmethod
    def _get_sandbox_id(sandbox_id: str) -> str:
        return f"{sandbox_id}"