YREA-SLS/SLS_Python/sls/builtin.py

10 lines
177 B
Python

from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .interpreter import InterpreterState
def load_builtins(interpreter_state: "InterpreterState") -> bool:
return True